Class DataInclusionException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.ametys.plugins.externaldata.data.DataInclusionException
-
- All Implemented Interfaces:
Serializable
public class DataInclusionException extends Exception
Data inclusion exception, used whenever there is an error specific to the plugin.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataInclusionException()
Data inclusion exception.DataInclusionException(String message)
Data inclusion exception.DataInclusionException(String message, Throwable cause)
Data inclusion exception.DataInclusionException(Throwable cause)
Data inclusion 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
-
DataInclusionException
public DataInclusionException()
Data inclusion exception.
-
DataInclusionException
public DataInclusionException(String message, Throwable cause)
Data inclusion exception.- Parameters:
message
- the error messagecause
- the exception's cause
-
DataInclusionException
public DataInclusionException(String message)
Data inclusion exception.- Parameters:
message
- the error message
-
DataInclusionException
public DataInclusionException(Throwable cause)
Data inclusion exception.- Parameters:
cause
- the exception's cause
-
-