| org.apache.torque.TorqueException
All known Subclasses: org.apache.torque.NoRowsException, org.apache.torque.TooManyRowsException,
TorqueException | public class TorqueException extends NestableException (Code) | | The base class of all exceptions thrown by Torque.
author: Daniel Rall author: Jason van Zyl version: $Id: TorqueException.java 473821 2006-11-11 22:37:25Z tv $ |
Constructor Summary | |
public | TorqueException() Constructs a new TorqueException without specified detail
message. | public | TorqueException(String msg) Constructs a new TorqueException with specified detail
message. | public | TorqueException(Throwable nested) Constructs a new TorqueException with specified nested
Throwable . | public | TorqueException(String msg, Throwable nested) Constructs a new TorqueException with specified detail
message and nested Throwable . |
TorqueException | public TorqueException()(Code) | | Constructs a new TorqueException without specified detail
message.
|
TorqueException | public TorqueException(String msg)(Code) | | Constructs a new TorqueException with specified detail
message.
Parameters: msg - the error message. |
TorqueException | public TorqueException(Throwable nested)(Code) | | Constructs a new TorqueException with specified nested
Throwable .
Parameters: nested - the exception or error that caused this exceptionto be thrown. |
TorqueException | public TorqueException(String msg, Throwable nested)(Code) | | Constructs a new TorqueException with specified detail
message and nested Throwable .
Parameters: msg - the error message. Parameters: nested - the exception or error that caused this exceptionto be thrown. |
|
|