Package edu.caltech.nanodb.storage
Class DataFormatException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- edu.caltech.nanodb.server.NanoDBException
-
- edu.caltech.nanodb.storage.StorageException
-
- edu.caltech.nanodb.storage.DataFormatException
-
- All Implemented Interfaces:
java.io.Serializable
public class DataFormatException extends StorageException
This class represents runtime issues with data files not being in the proper format, or other such issues occurring.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DataFormatException()
Construct a data format exception with no message.DataFormatException(java.lang.String msg)
Construct a data format exception with the specified message.DataFormatException(java.lang.String msg, java.lang.Throwable cause)
Construct a data format exception with the specified message and cause.DataFormatException(java.lang.Throwable cause)
Construct a data format exception with the specified cause and no message.
-
-
-
Constructor Detail
-
DataFormatException
public DataFormatException()
Construct a data format exception with no message.
-
DataFormatException
public DataFormatException(java.lang.String msg)
Construct a data format exception with the specified message.
-
DataFormatException
public DataFormatException(java.lang.Throwable cause)
Construct a data format exception with the specified cause and no message.
-
DataFormatException
public DataFormatException(java.lang.String msg, java.lang.Throwable cause)
Construct a data format exception with the specified message and cause.
-
-