Class UnknownDataException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- org.ametys.plugins.repository.AmetysRepositoryException
-
- org.ametys.plugins.repository.data.UnknownDataException
-
- All Implemented Interfaces:
Serializable
public class UnknownDataException extends AmetysRepositoryException
Exception thrown when an attempt to retrieve a data failed because it does not exist.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description UnknownDataException(String message)
Constructs a new unknown data exception with the specified detail message.UnknownDataException(String message, Throwable cause)
Constructs a new unknown data exception with the specified detail message and cause.UnknownDataException(Throwable cause)
Constructs a new unknown data exception with the specified 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
-
UnknownDataException
public UnknownDataException(String message)
Constructs a new unknown data exception with the specified detail message.- Parameters:
message
- The detail message.
-
UnknownDataException
public UnknownDataException(String message, Throwable cause)
Constructs a new unknown data exception with the specified detail message and cause.- Parameters:
message
- The detail message.cause
- The cause.
-
UnknownDataException
public UnknownDataException(Throwable cause)
Constructs a new unknown data exception with the specified cause.- Parameters:
cause
- The cause.
-
-