notio
Class UnimplementedFeatureException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--java.lang.RuntimeException
                    |
                    +--notio.UnimplementedFeatureException

public class UnimplementedFeatureException
extends java.lang.RuntimeException

This exception is thrown whenever a feature or operation is unavailable in a given Notio implementation. It is included primarily so that partial implementations may be safely distributed. Since it is a subclass of java.lang.RuntimeException, this exception need not be declared in the throws clause of any method and need not be explicitly caught. Use of this exception should be kept to a minimum and it should never be used to report any other type of error.

See Also:
RuntimeException, Serialized Form

Constructor Summary
UnimplementedFeatureException(java.lang.String message)
          Constructs an exception with the specified message.
 
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

UnimplementedFeatureException

public UnimplementedFeatureException(java.lang.String message)
Constructs an exception with the specified message.
Parameters:
message - the details of the exception.


Copyright 1998-1999 Finnegan Southey