Package com.db4o.ext
Class Db4oException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- com.db4o.foundation.ChainedRuntimeException
-
- com.db4o.ext.Db4oException
-
- All Implemented Interfaces:
java.io.Serializable
- Direct Known Subclasses:
Db4oFatalException
,Db4oRecoverableException
,InternalServerError
,QLinException
public class Db4oException extends ChainedRuntimeException
db4o exception wrapper: Exceptions occurring during internal processing will be proliferated to the client calling code encapsulated in an exception of this type. The original exception, if any, is available through Db4oException#getCause().- See Also:
- Serialized Form
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class com.db4o.foundation.ChainedRuntimeException
ChainedRuntimeException.ChainedRuntimeExceptionMixin
-
-
Constructor Summary
Constructors Constructor Description Db4oException()
Simple constructorDb4oException(int messageConstant)
Constructor with an exception message selected from the internal message collection.Db4oException(java.lang.String msg)
Constructor with an exception message specifiedDb4oException(java.lang.String msg, java.lang.Throwable cause)
Constructor with an exception message and cause specifiedDb4oException(java.lang.Throwable cause)
Constructor with an exception cause specified
-
-
-
Constructor Detail
-
Db4oException
public Db4oException()
Simple constructor
-
Db4oException
public Db4oException(java.lang.String msg)
Constructor with an exception message specified- Parameters:
msg
- exception message
-
Db4oException
public Db4oException(java.lang.Throwable cause)
Constructor with an exception cause specified- Parameters:
cause
- exception cause
-
Db4oException
public Db4oException(int messageConstant)
Constructor with an exception message selected from the internal message collection.- Parameters:
messageConstant
- internal db4o message number
-
Db4oException
public Db4oException(java.lang.String msg, java.lang.Throwable cause)
Constructor with an exception message and cause specified- Parameters:
msg
- exception messagecause
- exception cause
-
-