com.groovemanager.exception
Class NotFinishedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by com.groovemanager.exception.NotFinishedException
All Implemented Interfaces:
java.io.Serializable
Direct Known Subclasses:
CancelledByUserException

public class NotFinishedException
extends java.lang.Exception

This Exception Type will be thrown when an operation could not be finished.

Author:
Manu Robledo
See Also:
Serialized Form

Constructor Summary
NotFinishedException()
          Constrcuts a new NotFinishedException
NotFinishedException(java.lang.String message)
          Constructs a new NotFinishedException with the given message
NotFinishedException(java.lang.String message, java.lang.Throwable cause)
          Constructs a new NotFinishedException with the given message and a Throwable which caused the operation to break.
NotFinishedException(java.lang.Throwable cause)
          Constructs a new NotFinishedException with the given Throwable that caused the operation to break.
 
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

NotFinishedException

public NotFinishedException()
Constrcuts a new NotFinishedException


NotFinishedException

public NotFinishedException(java.lang.String message)
Constructs a new NotFinishedException with the given message

Parameters:
message - The message about hte cause of the Exception

NotFinishedException

public NotFinishedException(java.lang.String message,
                            java.lang.Throwable cause)
Constructs a new NotFinishedException with the given message and a Throwable which caused the operation to break.

Parameters:
message - The message about the cause of the Exception
cause - The Exception which caused the operation to break

NotFinishedException

public NotFinishedException(java.lang.Throwable cause)
Constructs a new NotFinishedException with the given Throwable that caused the operation to break.

Parameters:
cause - The Exception which caused the operation to break