org.bioquery.query
Class InvalidQueryLineException

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

public class InvalidQueryLineException
extends QueryException

Exception class thrown when the query text of a QueryLine object is not valid or contains an invalid line number reference to another QueryLine.

Author:
James Brundege
See Also:
Serialized Form

Constructor Summary
InvalidQueryLineException()
           
InvalidQueryLineException(java.lang.String message)
          Constructor accepts a text message.
InvalidQueryLineException(java.lang.String message, java.lang.Throwable cause)
          Constructor accepts a text message and an embedded exception.
InvalidQueryLineException(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

InvalidQueryLineException

public InvalidQueryLineException()

InvalidQueryLineException

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

InvalidQueryLineException

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

InvalidQueryLineException

public InvalidQueryLineException(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.