Package org.apache.torque
Class TorqueRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.torque.TorqueRuntimeException
- All Implemented Interfaces:
Serializable
This is the base class of all non-checked exceptions in Torque.
- Version:
- $Id: TorqueRuntimeException.java 1839288 2018-08-27 09:48:33Z tv $
- Author:
- Rafal Krzewski
- See Also:
-
Constructor Summary
ConstructorsConstructorDescriptionConstructs a newTorqueRuntimeExceptionwithout specified detail message.Constructs a newTorqueRuntimeExceptionwith specified detail message.TorqueRuntimeException(String msg, Throwable nested) Constructs a newTorqueRuntimeExceptionwith specified detail message and nestedThrowable.TorqueRuntimeException(Throwable nested) Constructs a newTorqueRuntimeExceptionwith specified nestedThrowable. -
Method Summary
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Constructor Details
-
TorqueRuntimeException
public TorqueRuntimeException()Constructs a newTorqueRuntimeExceptionwithout specified detail message. -
TorqueRuntimeException
Constructs a newTorqueRuntimeExceptionwith specified detail message.- Parameters:
msg- the error message.
-
TorqueRuntimeException
Constructs a newTorqueRuntimeExceptionwith specified nestedThrowable.- Parameters:
nested- the exception or error that caused this exception to be thrown.
-
TorqueRuntimeException
Constructs a newTorqueRuntimeExceptionwith specified detail message and nestedThrowable.- Parameters:
msg- the error message.nested- the exception or error that caused this exception to be thrown.
-