net.sf.jplist.core
Class JPListException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by net.sf.jplist.core.JPListException
All Implemented Interfaces:
java.io.Serializable

public class JPListException
extends java.lang.Exception

Exception class specific to JPLists.

Version:
$Revision: 1.1 $
Author:
Sujit Pal (spal@users.sourceforge.net)
See Also:
Serialized Form

Constructor Summary
JPListException()
          Instantiate an Exception
JPListException(java.lang.String message)
          Instantiate an Exception with an exception message.
JPListException(java.lang.String message, java.lang.Throwable cause)
          Instantiate an Exception with a message and embedded Throwable.
JPListException(java.lang.Throwable cause)
          Instantiate an Exception with an embedded Throwable.
 
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

JPListException

public JPListException()
Instantiate an Exception


JPListException

public JPListException(java.lang.String message)
Instantiate an Exception with an exception message.

Parameters:
message - the exception message.

JPListException

public JPListException(java.lang.Throwable cause)
Instantiate an Exception with an embedded Throwable.

Parameters:
cause - the embedded cause.

JPListException

public JPListException(java.lang.String message,
                       java.lang.Throwable cause)
Instantiate an Exception with a message and embedded Throwable.

Parameters:
message - the exception message.
cause - the embedded cause.