Package org.apache.torque
Class NoRowsException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.sql.SQLException
-
- org.apache.torque.TorqueException
-
- org.apache.torque.NoRowsException
-
- All Implemented Interfaces:
Serializable
,Iterable<Throwable>
public class NoRowsException extends TorqueException
This exception indicates that no rows were returned but at least one should have been returned.- Version:
- $Id: NoRowsException.java 1351125 2012-06-17 16:51:03Z tv $
- Author:
- Quinton McCombs
- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description NoRowsException()
Constructs a newTorqueException
without specified detail message.NoRowsException(String msg)
Constructs a newTorqueException
with specified detail message.NoRowsException(String msg, Throwable nested)
Constructs a newTorqueException
with specified detail message and nestedThrowable
.NoRowsException(Throwable nested)
Constructs a newTorqueException
with specified nestedThrowable
.
-
Method Summary
-
Methods inherited from class java.sql.SQLException
getErrorCode, getNextException, getSQLState, iterator, setNextException
-
Methods inherited from class java.lang.Throwable
addSuppressed, fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, getSuppressed, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface java.lang.Iterable
forEach, spliterator
-
-
-
-
Constructor Detail
-
NoRowsException
public NoRowsException()
Constructs a newTorqueException
without specified detail message.
-
NoRowsException
public NoRowsException(String msg)
Constructs a newTorqueException
with specified detail message.- Parameters:
msg
- the error message.
-
NoRowsException
public NoRowsException(Throwable nested)
Constructs a newTorqueException
with specified nestedThrowable
.- Parameters:
nested
- the exception or error that caused this exception to be thrown.
-
-