File: ThrowedParseException.java

package info (click to toggle)
flutejava 1.3-4
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 1,316 kB
  • ctags: 1,070
  • sloc: java: 8,251; makefile: 52
file content (24 lines) | stat: -rw-r--r-- 640 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
/*
 * (c) COPYRIGHT 1999 World Wide Web Consortium
 * (Massachusetts Institute of Technology, Institut National de Recherche
 *  en Informatique et en Automatique, Keio University).
 * All Rights Reserved. http://www.w3.org/Consortium/Legal/
 *
 * $Id: ThrowedParseException.java,v 1.1 1999/06/09 15:21:33 plehegar Exp $
 */
package org.w3c.flute.parser;

/**
 * @version $Revision: 1.1 $
 * @author  Philippe Le Hegaret
 */
class ThrowedParseException extends RuntimeException {
    ParseException e;

    /**
     * Creates a new ThrowedParseException
     */
    ThrowedParseException(ParseException e) {
        this.e     = e;
    }
}