Package com.queomedia.commons.exceptions
Class NotFoundRuntimeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.queomedia.commons.exceptions.NotFoundRuntimeException
-
- All Implemented Interfaces:
Serializable
public class NotFoundRuntimeException extends RuntimeException
Thrown to indicate that an object is not found.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotFoundRuntimeException()Instantiates a new not found exception.NotFoundRuntimeException(String message)Instantiates a new not found exception.NotFoundRuntimeException(String message, Throwable cause)Instantiates a new not found exception.NotFoundRuntimeException(Throwable cause)Instantiates a new not found 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
-
NotFoundRuntimeException
public NotFoundRuntimeException()
Instantiates a new not found exception.
-
NotFoundRuntimeException
public NotFoundRuntimeException(String message)
Instantiates a new not found exception.- Parameters:
message- the message
-
NotFoundRuntimeException
public NotFoundRuntimeException(Throwable cause)
Instantiates a new not found exception.- Parameters:
cause- the cause
-
-