Package net.sf.basedb.core
Class UnsupportedFileFormatException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
net.sf.basedb.core.BaseException
net.sf.basedb.core.InvalidDataException
net.sf.basedb.core.UnsupportedFileFormatException
- All Implemented Interfaces:
Serializable
Thrown when an import plug-in is forced to use a file that
is not of the correct format.
- Version:
- 2.9
- Author:
- Nicklas
- See Also:
- Last modified
- $Date: 2008-10-21 09:20:40 +0200 (ti, 21 okt 2008) $
-
Field Summary
-
Constructor Summary
ConstructorDescriptionCreate a newUnsupportedFileFormatException
object.UnsupportedFileFormatException
(String message) Create a newUnsupportedFileFormatException
object with the specifiedmessage
.UnsupportedFileFormatException
(String message, Throwable cause) Create a newUnsupportedFileFormatException
object with the specifiedmessage
.Create a newUnsupportedFileFormatException
object. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Field Details
-
serialVersionUID
private static final long serialVersionUID- See Also:
-
-
Constructor Details
-
UnsupportedFileFormatException
public UnsupportedFileFormatException()Create a newUnsupportedFileFormatException
object. -
UnsupportedFileFormatException
Create a newUnsupportedFileFormatException
object.- Parameters:
cause
- Throwable object that caused this exception.
-
UnsupportedFileFormatException
Create a newUnsupportedFileFormatException
object with the specifiedmessage
.- Parameters:
message
- The message to throw with the exception
-
UnsupportedFileFormatException
Create a newUnsupportedFileFormatException
object with the specifiedmessage
.- Parameters:
message
- The message to throw with the exceptioncause
- Throwable object that caused this exception.
-