Package javax.jdo
Class JDOQueryInterruptedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- java.lang.RuntimeException
-
- javax.jdo.JDOException
-
- javax.jdo.JDOCanRetryException
-
- javax.jdo.JDOUserException
-
- javax.jdo.JDOQueryInterruptedException
-
- All Implemented Interfaces:
java.io.Serializable
public class JDOQueryInterruptedException extends JDOUserException
This class represents exceptions caused when a query is cancelled by a user calling Query.cancel().- Since:
- 3.0
- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
-
Fields inherited from class javax.jdo.JDOException
failed, nested
-
-
Constructor Summary
Constructors Constructor Description JDOQueryInterruptedException()
Constructs a newJDOQueryInterruptedException
without a detail message.JDOQueryInterruptedException(java.lang.String msg)
Constructs a newJDOQueryInterruptedException
with the specified detail message.
-
Method Summary
-
Methods inherited from class javax.jdo.JDOException
getCause, getFailedObject, getNestedExceptions, initCause, printStackTrace, printStackTrace, printStackTrace, toString
-
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
JDOQueryInterruptedException
public JDOQueryInterruptedException()
Constructs a newJDOQueryInterruptedException
without a detail message.
-
JDOQueryInterruptedException
public JDOQueryInterruptedException(java.lang.String msg)
Constructs a newJDOQueryInterruptedException
with the specified detail message.- Parameters:
msg
- the detail message.
-
-