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
public class UnsupportedFileFormatException extends InvalidDataException
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:
- Serialized Form
- Last modified
- $Date: 2008-10-21 09:20:40 +0200 (ti, 21 okt 2008) $
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Constructor Summary
Constructors Constructor Description UnsupportedFileFormatException()
Create 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
.UnsupportedFileFormatException(Throwable cause)
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 Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
UnsupportedFileFormatException
public UnsupportedFileFormatException()
Create a newUnsupportedFileFormatException
object.
-
UnsupportedFileFormatException
public UnsupportedFileFormatException(Throwable cause)
Create a newUnsupportedFileFormatException
object.- Parameters:
cause
- Throwable object that caused this exception.
-
UnsupportedFileFormatException
public UnsupportedFileFormatException(String message)
Create a newUnsupportedFileFormatException
object with the specifiedmessage
.- Parameters:
message
- The message to throw with the exception
-
-