Package fi.tut.mei.resdescapi.exception
Class NotExistException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- fi.tut.mei.resdescapi.exception.NotExistException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
ARDNotExistException
,ProfileNotExistException
,RDNotExistException
public abstract class NotExistException extends Exception
Some resource (ARD, RD, ...) did not exist in a collection, list or catalogue. The same exception is used in case some resource is not found.- Author:
- Niko Siltala
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NotExistException()
NotExistException(String message)
NotExistException(String id, String message)
NotExistException(String message, Throwable cause)
NotExistException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
NotExistException(Throwable cause)
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
NotExistException
public NotExistException()
-
NotExistException
public NotExistException(String message)
- Parameters:
message
-
-
NotExistException
public NotExistException(Throwable cause)
- Parameters:
cause
-
-
NotExistException
public NotExistException(String message, Throwable cause)
- Parameters:
message
-cause
-
-
-