org.nsdl.mptstore.query
Class RuntimeQueryException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.nsdl.mptstore.query.RuntimeQueryException
All Implemented Interfaces:
java.io.Serializable

public class RuntimeQueryException
extends java.lang.RuntimeException

Unchecked exception signaling a query-related error.

This exception is thrown when a QueryException occurs in a context where a checked exception cannot be thrown due to interface restrictions.

Author:
cwilper@cs.cornell.edu
See Also:
Serialized Form

Constructor Summary
RuntimeQueryException(QueryException cause)
          Construct a RuntimeQueryException representing the given QueryException.
 
Method Summary
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

RuntimeQueryException

public RuntimeQueryException(QueryException cause)
Construct a RuntimeQueryException representing the given QueryException.

Parameters:
cause - the cause, which is always a QueryException.