Package com.avoka.tm.util
Class ObjectNotFoundException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- java.lang.IllegalArgumentException
-
- com.avoka.tm.util.ObjectNotFoundException
-
- All Implemented Interfaces:
Serializable
public class ObjectNotFoundException extends IllegalArgumentException
Thrown to indicate that a object was not found for given parameters- Since:
- 21.05.0
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ObjectNotFoundException()Constructs anObjectNotFoundExceptionwith no detail message.ObjectNotFoundException(String message)Constructs anObjectNotFoundExceptionwith the specified detail message.ObjectNotFoundException(String message, Throwable cause)Constructs anObjectNotFoundExceptionwith the specified detail message and cause.ObjectNotFoundException(Throwable cause)Constructs anObjectNotFoundExceptionwith the 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
-
ObjectNotFoundException
public ObjectNotFoundException()
Constructs anObjectNotFoundExceptionwith no detail message.
-
ObjectNotFoundException
public ObjectNotFoundException(String message)
Constructs anObjectNotFoundExceptionwith the specified detail message.- Parameters:
message- the detail message.
-
ObjectNotFoundException
public ObjectNotFoundException(String message, Throwable cause)
Constructs anObjectNotFoundExceptionwith the specified detail message and cause.- Parameters:
message- the detail message.cause- Throwable cause
-
ObjectNotFoundException
public ObjectNotFoundException(Throwable cause)
Constructs anObjectNotFoundExceptionwith the cause.- Parameters:
cause- Throwable cause
-
-