5a3767bd506957d95ca613d4bb945671c529341a
[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         /**
27          * InvalidInputException constructor comment.
28          * 
29          * @param s
30          *            java.lang.String
31          */
32         public InvalidInputException(String s) {
33                 super(s);
34         }
35 }