org.bioquery.query
Class InvalidQueryException

java.lang.Object
  |
  +--java.lang.Throwable
        |
        +--java.lang.Exception
              |
              +--org.bioquery.query.QueryException
                    |
                    +--org.bioquery.query.InvalidQueryException
All Implemented Interfaces:
java.io.Serializable

public class InvalidQueryException
extends QueryException

Exception class thrown when data or methods within Query objects do not work as intended. Can also contain other embedded exceptions (such as those indicating the problem is with network connections, etc.).

Author:
James Brundege
See Also:
Serialized Form

Constructor Summary
InvalidQueryException()
           
InvalidQueryException(java.lang.String message)
          Constructor accepts a text message.
InvalidQueryException(java.lang.String message, java.lang.Throwable cause)
          Constructor accepts a text message and an embedded exception.
InvalidQueryException(java.lang.Throwable cause)
          Constructor accepts an embedded exception.
 
Methods inherited from class org.bioquery.query.QueryException
getCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getLocalizedMessage, getMessage, printStackTrace, printStackTrace, printStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

InvalidQueryException

public InvalidQueryException()

InvalidQueryException

public InvalidQueryException(java.lang.String message)
Constructor accepts a text message.
Parameters:
message - Message that the user will be able to retrieve

InvalidQueryException

public InvalidQueryException(java.lang.Throwable cause)
Constructor accepts an embedded exception.
Parameters:
cause - An embedded exception the user can retrieve.

InvalidQueryException

public InvalidQueryException(java.lang.String message,
                             java.lang.Throwable cause)
Constructor accepts a text message and an embedded exception.
Parameters:
message - Message that the user will be able to retrieve
cause - An embedded exception the user can retrieve.