Package edu.caltech.nanodb.storage
Class TupleFileException
- 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.TupleFileException
-
- All Implemented Interfaces:
java.io.Serializable
public class TupleFileException extends StorageException
This class represents errors that occur while manipulating tuple files.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description TupleFileException()
Construct a tuple-file exception with no message.TupleFileException(java.lang.String msg)
Construct a tuple-file exception with the specified message.TupleFileException(java.lang.String msg, java.lang.Throwable cause)
Construct a tuple-file exception with the specified message and cause.TupleFileException(java.lang.Throwable cause)
Construct a tuple-file exception with the specified cause and no message.
-
-
-
Constructor Detail
-
TupleFileException
public TupleFileException()
Construct a tuple-file exception with no message.
-
TupleFileException
public TupleFileException(java.lang.String msg)
Construct a tuple-file exception with the specified message.
-
TupleFileException
public TupleFileException(java.lang.Throwable cause)
Construct a tuple-file exception with the specified cause and no message.
-
TupleFileException
public TupleFileException(java.lang.String msg, java.lang.Throwable cause)
Construct a tuple-file exception with the specified message and cause.
-
-