| org.apache.torque.TorqueException org.apache.torque.NoRowsException
NoRowsException | public class NoRowsException extends TorqueException (Code) | | This exception indicates that no rows were returned but atleast one should
have been returned.
author: Quinton McCombs version: $Id: NoRowsException.java 473821 2006-11-11 22:37:25Z tv $ |
Constructor Summary | |
public | NoRowsException() Constructs a new TorqueException without specified detail
message. | public | NoRowsException(String msg) Constructs a new TorqueException with specified detail
message. | public | NoRowsException(Throwable nested) Constructs a new TorqueException with specified nested
Throwable . | public | NoRowsException(String msg, Throwable nested) Constructs a new TorqueException with specified detail
message and nested Throwable . |
NoRowsException | public NoRowsException()(Code) | | Constructs a new TorqueException without specified detail
message.
|
NoRowsException | public NoRowsException(String msg)(Code) | | Constructs a new TorqueException with specified detail
message.
Parameters: msg - the error message. |
NoRowsException | public NoRowsException(Throwable nested)(Code) | | Constructs a new TorqueException with specified nested
Throwable .
Parameters: nested - the exception or error that caused this exceptionto be thrown. |
NoRowsException | public NoRowsException(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. |
|
|