Package org.ametys.plugins.contentio.in
Class ContentImportException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.ametys.plugins.contentio.in.ContentImportException
-
- All Implemented Interfaces:
Serializable
public class ContentImportException extends Exception
Exception indicating a content import error.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ContentImportException(String message)
Build a ContentImportException.ContentImportException(String message, Throwable cause)
Build a ContentImportException.ContentImportException(Throwable cause)
Build a ContentImportException.
-
Method Summary
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
ContentImportException
public ContentImportException(String message)
Build a ContentImportException.- Parameters:
message
- the error detail message.
-
ContentImportException
public ContentImportException(String message, Throwable cause)
Build a ContentImportException.- Parameters:
message
- the error detail message.cause
- the error cause.
-
ContentImportException
public ContentImportException(Throwable cause)
Build a ContentImportException.- Parameters:
cause
- the error cause.
-
-