hamsam.exception
Class UnsupportedOperationException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--hamsam.exception.HamsamException
                    |
                    +--hamsam.exception.UnsupportedOperationException
All Implemented Interfaces:
java.io.Serializable

public class UnsupportedOperationException
extends HamsamException

Thrown to indicate that the requested operation is not supported.

See Also:
Serialized Form

Constructor Summary
UnsupportedOperationException()
          Constructs an UnsupportedOperationException with no detailed message.
UnsupportedOperationException(java.lang.String message)
          Constructs an UnsupportedOperationException with the specified detail message.
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

UnsupportedOperationException

public UnsupportedOperationException()
Constructs an UnsupportedOperationException with no detailed message.


UnsupportedOperationException

public UnsupportedOperationException(java.lang.String message)
Constructs an UnsupportedOperationException with the specified detail message.

Parameters:
message - the detail message. The detail message is saved for later retrieval by the Throwable.getMessage() method.