kaapo.projectmanager.command
Class EditFailedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by kaapo.projectmanager.command.EditFailedException
All Implemented Interfaces:
Serializable

public class EditFailedException
extends Exception

Exception for situations where something inside an Edit has failed to execute and the Edit cannot be completed.

Author:
hprajani
See Also:
Serialized Form

Constructor Summary
EditFailedException()
          Constructs a new exception with null as its detailed message.
EditFailedException(String s)
          Constructs a new exception with the specified detail message.
EditFailedException(String s, Throwable cause)
          Constructs a new exception with a specified detail message and a Throwable cause that can be retrieved with getCause().
EditFailedException(Throwable cause)
          Constructs a new exception with a null detailed message with a 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

EditFailedException

public EditFailedException()
Constructs a new exception with null as its detailed message.


EditFailedException

public EditFailedException(String s)
Constructs a new exception with the specified detail message.

Parameters:
s - the detail message

EditFailedException

public EditFailedException(String s,
                           Throwable cause)
Constructs a new exception with a specified detail message and a Throwable cause that can be retrieved with getCause().

Parameters:
s - the detail message
cause - the cause of this exception

EditFailedException

public EditFailedException(Throwable cause)
Constructs a new exception with a null detailed message with a cause.

Parameters:
cause -