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