Package org.silverpeas.core.importexport
Class ExportException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.silverpeas.core.importexport.ExportException
-
- All Implemented Interfaces:
Serializable
- Direct Known Subclasses:
NoDataToExportException
public class ExportException extends Exception
Exception thrown when the export of a Silverpeas resource failed. It is a business exception that occurs when a business operation invoked by a user fails.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ExportException(String message)
Constructs a new ExportException with the specified message.ExportException(String message, Throwable thrwbl)
Constructs a new ExportException with the specified message and cause.ExportException(Throwable thrwbl)
Constructs a new ExportException by specifying 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
-
ExportException
public ExportException(Throwable thrwbl)
Constructs a new ExportException by specifying the cause.- Parameters:
thrwbl
- the cause of this exception.
-
ExportException
public ExportException(String message, Throwable thrwbl)
Constructs a new ExportException with the specified message and cause.- Parameters:
message
- the message about the problem.thrwbl
- the cause of the exception.
-
ExportException
public ExportException(String message)
Constructs a new ExportException with the specified message.- Parameters:
message
- the message about the problem.
-
-