org.apache.commons.lang
Class NotImplementedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by java.lang.UnsupportedOperationException
                  extended by org.apache.commons.lang.NotImplementedException
All Implemented Interfaces:
java.io.Serializable

public class NotImplementedException
extends java.lang.UnsupportedOperationException

Thrown to indicate that a method has not been implemented.

Since:
2.0
Version:
$Id: NotImplementedException.java,v 1.4 2003/08/18 02:22:23 bayard Exp $
Author:
Matthew Hawthorne
See Also:
Serialized Form

Constructor Summary
NotImplementedException(java.lang.Class clazz)
          Constructes the exception with the specified class.
NotImplementedException(java.lang.String msg)
          Constructs the exception with the specified message.
 
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

NotImplementedException

public NotImplementedException(java.lang.Class clazz)

Constructes the exception with the specified class.

Parameters:
clazz - the Class that has not implemented the method

NotImplementedException

public NotImplementedException(java.lang.String msg)

Constructs the exception with the specified message.

Parameters:
msg - the exception message.


Copyright © 2001-2003 - Apache Software Foundation