Package com.queomedia.commons.exceptions
Class AlreadyExistsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- com.queomedia.commons.exceptions.AlreadyExistsException
-
- All Implemented Interfaces:
Serializable
public class AlreadyExistsException extends Exception
This Exception indicates that some thing can not been created, because it already exists.- See Also:
AlreadyExistsRuntimeException, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AlreadyExistsException(String message)Instantiates a new already exists exception.AlreadyExistsException(String message, Throwable cause)Instantiates a new already exists exception.AlreadyExistsException(Throwable cause)Instantiates a new already exists exception.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
AlreadyExistsException
public AlreadyExistsException(String message, Throwable cause)
Instantiates a new already exists exception.- Parameters:
message- the messagecause- the cause
-
AlreadyExistsException
public AlreadyExistsException(String message)
Instantiates a new already exists exception.- Parameters:
message- the message
-
AlreadyExistsException
public AlreadyExistsException(Throwable cause)
Instantiates a new already exists exception.- Parameters:
cause- the cause
-
-