Package edu.caltech.nanodb.storage
Class InvalidFilePointerException
- 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.InvalidFilePointerException
-
- All Implemented Interfaces:
java.io.Serializable
public class InvalidFilePointerException extends StorageException
This exception class can be thrown when a file-pointer is discovered to be invalid for some reason. For example, file-pointers can be invalid if they do not point to an actual tuple in a table-file.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description InvalidFilePointerException()
Construct an invalid file-pointer exception with no message.InvalidFilePointerException(java.lang.String msg)
Construct an invalid file-pointer exception with the specified message.InvalidFilePointerException(java.lang.String msg, java.lang.Throwable cause)
Construct an invalid file-pointer exception with the specified message and cause.InvalidFilePointerException(java.lang.Throwable cause)
Construct an invalid file-pointer exception with the specified cause and no message.
-
-
-
Constructor Detail
-
InvalidFilePointerException
public InvalidFilePointerException()
Construct an invalid file-pointer exception with no message.
-
InvalidFilePointerException
public InvalidFilePointerException(java.lang.String msg)
Construct an invalid file-pointer exception with the specified message.
-
InvalidFilePointerException
public InvalidFilePointerException(java.lang.Throwable cause)
Construct an invalid file-pointer exception with the specified cause and no message.
-
InvalidFilePointerException
public InvalidFilePointerException(java.lang.String msg, java.lang.Throwable cause)
Construct an invalid file-pointer exception with the specified message and cause.
-
-