org.molwind
Class MolwindException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by org.molwind.MolwindException
All Implemented Interfaces:
java.io.Serializable

public class MolwindException
extends java.lang.Exception

MolwindException represents a general Molwind exception.

Version:
1.0
Author:
Oliver Karch
See Also:
Serialized Form

Constructor Summary
MolwindException()
          Constructs a new exception with null as its detail message.
MolwindException(java.lang.String message)
          Constructs a new exception with the specified detail message.
MolwindException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new exception with the specified detail message and cause.
MolwindException(java.lang.Throwable cause)
          Constructs a new exception with the specified cause and a detail message of cause == null ? null : cause.toString() (which typically contains the class and detail message of cause).
 
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

MolwindException

public MolwindException()
Constructs a new exception with null as its detail message.


MolwindException

public MolwindException(java.lang.String message)
Constructs a new exception with the specified detail message.

Parameters:
message - the detail message, saved for later retrieval by the Throwable.getMessage() method

MolwindException

public MolwindException(java.lang.String message,
                        java.lang.Throwable cause)
Constructs a new exception with the specified detail message and cause.

Parameters:
message - the detail message, saved for later retrieval by the Throwable.getMessage() method
cause - the cause, saved for later retrieval by the Throwable.getCause() method (a null value is permitted, and indicates that the cause is nonexistent or unknown)

MolwindException

public MolwindException(java.lang.Throwable cause)
Constructs a new exception with the specified cause and a detail message of cause == null ? null : cause.toString() (which typically contains the class and detail message of cause).

Parameters:
cause - the cause, saved for later retrieval by the Throwable.getCause() method (a null value is permitted, and indicates that the cause is nonexistent or unknown)


Copyright © 2008-2010. All Rights Reserved.