Class DBThrownByEndUserCodeException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- nz.co.gregs.dbvolution.exceptions.DBRuntimeException
-
- nz.co.gregs.dbvolution.exceptions.DBThrownByEndUserCodeException
-
- All Implemented Interfaces:
Serializable
public class DBThrownByEndUserCodeException extends DBRuntimeException
Thrown when the end-user's code threw an exception during invocation. For example, this exception will be thrown when property accessor methods throw exceptions.Support DBvolution at Patreon
- Author:
- Malcolm Lett
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description DBThrownByEndUserCodeException(String message, Throwable cause)
Thrown when the end-user's code threw an exception during invocation.
-
Method Summary
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
-
-
-
Constructor Detail
-
DBThrownByEndUserCodeException
public DBThrownByEndUserCodeException(String message, Throwable cause)
Thrown when the end-user's code threw an exception during invocation. For example, this exception will be thrown when property accessor methods throw exceptions.- Parameters:
message
- messagecause
- cause
-
-