Klasse TorqueRuntimeException

Alle implementierten Schnittstellen:
Serializable

public class TorqueRuntimeException extends RuntimeException
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:
  • Konstruktordetails

    • TorqueRuntimeException

      public TorqueRuntimeException()
      Constructs a new TorqueRuntimeException without specified detail message.
    • TorqueRuntimeException

      public TorqueRuntimeException(String msg)
      Constructs a new TorqueRuntimeException with specified detail message.
      Parameter:
      msg - the error message.
    • TorqueRuntimeException

      public TorqueRuntimeException(Throwable nested)
      Constructs a new TorqueRuntimeException with specified nested Throwable.
      Parameter:
      nested - the exception or error that caused this exception to be thrown.
    • TorqueRuntimeException

      public TorqueRuntimeException(String msg, Throwable nested)
      Constructs a new TorqueRuntimeException with specified detail message and nested Throwable.
      Parameter:
      msg - the error message.
      nested - the exception or error that caused this exception to be thrown.