first scanner /parser copied from the jdt java version
[phpeclipse.git] / net.sourceforge.phpeclipse / src / net / sourceforge / phpdt / core / compiler / InvalidInputException.java
1 /**********************************************************************
2 Copyright (c) 2002 IBM Corp. and others.
3 All rights reserved.   This program and the accompanying materials
4 are made available under the terms of the Common Public License v0.5
5 which accompanies this distribution, and is available at
6 http://www.eclipse.org/legal/cpl-v05.html
7  
8 Contributors:
9      IBM Corporation - initial API and implementation
10 **********************************************************************/
11
12 package net.sourceforge.phpdt.core.compiler;
13
14 /**
15  * Exception thrown by a scanner when encountering lexical errors.
16  */
17 public class InvalidInputException extends Exception {
18
19         /**
20          * InvalidInputException constructor comment.
21          */
22         public InvalidInputException() {
23                 super();
24         }
25         /**
26          * InvalidInputException constructor comment.
27          * @param s java.lang.String
28          */
29         public InvalidInputException(String s) {
30                 super(s);
31         }
32 }