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