Package org.silverpeas.core.importexport
Class NoDataToExportException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.silverpeas.core.importexport.ExportException
-
- org.silverpeas.core.importexport.NoDataToExportException
-
- All Implemented Interfaces:
Serializable
public class NoDataToExportException extends ExportException
A specific export exception that is raised when there is no data to export and the format of the file into which the export has to be done requires the existance of at least one such data.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoDataToExportException(String message)
Constructs a new NoDataToExportException with the specified message.NoDataToExportException(String message, Throwable thrwbl)
Constructs a new NoDataToExportException with the specified message and cause.NoDataToExportException(Throwable thrwbl)
Constructs a new NoDataToExportException by specifyinbg 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
-
NoDataToExportException
public NoDataToExportException(String message)
Constructs a new NoDataToExportException with the specified message.- Parameters:
message
- the message about the problem.
-
NoDataToExportException
public NoDataToExportException(String message, Throwable thrwbl)
Constructs a new NoDataToExportException with the specified message and cause.- Parameters:
message
- the message about the problem.thrwbl
- the cause of the exception.
-
NoDataToExportException
public NoDataToExportException(Throwable thrwbl)
Constructs a new NoDataToExportException by specifyinbg the cause.- Parameters:
thrwbl
- the cause of this exception.
-
-