Sharkysoft home

lava
Class NotSupportedException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--lava.NotImplementedException
                          |
                          +--lava.NotSupportedException
All Implemented Interfaces:
java.io.Serializable

public class NotSupportedException
extends NotImplementedException

Indicates an unsupported feature.

Details: A NotSupportedException is thrown when a feature is requested that may ultimately be supported, but is not yet supported in the current version of the software. This class makes it possible to lay out the structure for future features without requiring you to immediately implement them.

Since:
1999.04.19
See Also:
Serialized Form

Constructor Summary
NotSupportedException()
          Initializes a new instance with no message.
NotSupportedException(java.lang.String s)
          Initializes a new instance with the given message.
 
Methods inherited from class lava.NotImplementedException
trace
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

NotSupportedException

public NotSupportedException()
Initializes a new instance with no message.

NotSupportedException

public NotSupportedException(java.lang.String s)
Initializes a new instance with the given message.
Parameters:
s - the message

Sharkysoft home