KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > w3c > flute > parser > ThrowedParseException


1 /*
2  * (c) COPYRIGHT 1999 World Wide Web Consortium
3  * (Massachusetts Institute of Technology, Institut National de Recherche
4  * en Informatique et en Automatique, Keio University).
5  * All Rights Reserved. http://www.w3.org/Consortium/Legal/
6  *
7  * $Id: ThrowedParseException.java,v 1.1.1.1 2006/04/23 14:51:51 taqua Exp $
8  */

9 package org.w3c.flute.parser;
10
11 /**
12  * @version $Revision: 1.1.1.1 $
13  * @author Philippe Le Hegaret
14  */

15 class ThrowedParseException extends RuntimeException JavaDoc {
16     ParseException e;
17
18     /**
19      * Creates a new ThrowedParseException
20      */

21     ThrowedParseException(ParseException e) {
22         this.e = e;
23     }
24 }
25
Popular Tags