Package org.apache.torque
Klasse TorqueRuntimeException
java.lang.Object
java.lang.Throwable
java.lang.Exception
java.lang.RuntimeException
org.apache.torque.TorqueRuntimeException
- Alle implementierten Schnittstellen:
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 $
- Autor:
- Rafal Krzewski
- Siehe auch:
-
Konstruktorübersicht
KonstruktorenKonstruktorBeschreibungConstructs a newTorqueRuntimeException
without specified detail message.Constructs a newTorqueRuntimeException
with specified detail message.TorqueRuntimeException
(String msg, Throwable nested) Constructs a newTorqueRuntimeException
with specified detail message and nestedThrowable
.TorqueRuntimeException
(Throwable nested) Constructs a newTorqueRuntimeException
with specified nestedThrowable
. -
Methodenübersicht
Von Klasse geerbte Methoden java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Konstruktordetails
-
TorqueRuntimeException
public TorqueRuntimeException()Constructs a newTorqueRuntimeException
without specified detail message. -
TorqueRuntimeException
Constructs a newTorqueRuntimeException
with specified detail message.- Parameter:
msg
- the error message.
-
TorqueRuntimeException
Constructs a newTorqueRuntimeException
with specified nestedThrowable
.- Parameter:
nested
- the exception or error that caused this exception to be thrown.
-
TorqueRuntimeException
Constructs a newTorqueRuntimeException
with specified detail message and nestedThrowable
.- Parameter:
msg
- the error message.nested
- the exception or error that caused this exception to be thrown.
-