Package com.queomedia.commons.exceptions
Class AlreadyExistsRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.queomedia.commons.exceptions.AlreadyExistsRuntimeException
-
- All Implemented Interfaces:
Serializable
public class AlreadyExistsRuntimeException extends RuntimeException
This Exception indicates that some thing can not been created, because it already exists.- See Also:
AlreadyExistsException, Serialized Form
-
-
Constructor Summary
Constructors Constructor Description AlreadyExistsRuntimeException(String message)Instantiates a new already exists exception.AlreadyExistsRuntimeException(String message, Throwable cause)Instantiates a new already exists exception.AlreadyExistsRuntimeException(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
-
AlreadyExistsRuntimeException
public AlreadyExistsRuntimeException(String message, Throwable cause)
Instantiates a new already exists exception.- Parameters:
message- the messagecause- the cause
-
AlreadyExistsRuntimeException
public AlreadyExistsRuntimeException(String message)
Instantiates a new already exists exception.- Parameters:
message- the message
-
AlreadyExistsRuntimeException
public AlreadyExistsRuntimeException(Throwable cause)
Instantiates a new already exists exception.- Parameters:
cause- the cause
-
-