mev-4.0.01/source/org/tigr/remote/protocol/parser/ParserException.java

Code
Comments
Other
Rev Date Author Line
2 26 Feb 07 jari 1 /*
2 26 Feb 07 jari 2 Copyright @ 1999-2003, The Institute for Genomic Research (TIGR).
2 26 Feb 07 jari 3 All rights reserved.
2 26 Feb 07 jari 4 */
2 26 Feb 07 jari 5 /*
2 26 Feb 07 jari 6  * $RCSfile: ParserException.java,v $
2 26 Feb 07 jari 7  * $Revision: 1.3 $
2 26 Feb 07 jari 8  * $Date: 2005/03/10 15:28:23 $
2 26 Feb 07 jari 9  * $Author: braistedj $
2 26 Feb 07 jari 10  * $State: Exp $
2 26 Feb 07 jari 11  */
2 26 Feb 07 jari 12 package org.tigr.remote.protocol.parser;
2 26 Feb 07 jari 13
2 26 Feb 07 jari 14 import org.tigr.remote.RemoteException;
2 26 Feb 07 jari 15
2 26 Feb 07 jari 16 public class ParserException extends RemoteException {
2 26 Feb 07 jari 17
2 26 Feb 07 jari 18     /**
2 26 Feb 07 jari 19      * Constructs a <code>ParserException</code> with 
2 26 Feb 07 jari 20      * specified detail message.
2 26 Feb 07 jari 21      */
2 26 Feb 07 jari 22     public ParserException( String message ) {
2 26 Feb 07 jari 23         super( message );
2 26 Feb 07 jari 24     }
2 26 Feb 07 jari 25
2 26 Feb 07 jari 26     /**
2 26 Feb 07 jari 27      * Constructs a <code>ParserException</code> with a
2 26 Feb 07 jari 28      * specified detail message and an intitial exception.
2 26 Feb 07 jari 29      */
2 26 Feb 07 jari 30     public ParserException( String message, Exception exception ) {
2 26 Feb 07 jari 31         super( message, exception );
2 26 Feb 07 jari 32     }
2 26 Feb 07 jari 33 }
2 26 Feb 07 jari 34