ch.javasoft.jbase.util
Class UnsupportedOperationException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.io.IOException
              extended by ch.javasoft.jbase.util.UnsupportedOperationException
All Implemented Interfaces:
Serializable

public class UnsupportedOperationException
extends IOException

An UnsupportedOperationException is thrown by table methods if the concerned operation is not supported. For instance, unmodifiable tables throw such an exception if a write operation is invoked.

See Also:
Serialized Form

Constructor Summary
UnsupportedOperationException()
          Constructor for UnsupportedOperationException without message
UnsupportedOperationException(String message)
          Constructor for UnsupportedOperationException with message
UnsupportedOperationException(String message, Throwable cause)
          Constructor for UnsupportedOperationException with message and nested exception
UnsupportedOperationException(Throwable cause)
          Constructor for UnsupportedOperationException without message but with causing nested exception
 
Method Summary
 
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()
Constructor for UnsupportedOperationException without message


UnsupportedOperationException

public UnsupportedOperationException(String message,
                                     Throwable cause)
Constructor for UnsupportedOperationException with message and nested exception

Parameters:
message - the exception message
cause - the nested exception which caused this exception

UnsupportedOperationException

public UnsupportedOperationException(String message)
Constructor for UnsupportedOperationException with message

Parameters:
message - the exception message

UnsupportedOperationException

public UnsupportedOperationException(Throwable cause)
Constructor for UnsupportedOperationException without message but with causing nested exception

Parameters:
cause - the nested exception which caused this exception