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