1) Moved net.sourceforge.phpeclipse.ui\src\net\sourceforge\phpdt back to net.sourcefo...
[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          * 
21          */
22         private static final long serialVersionUID = 6181636764452047619L;
23
24         /**
25          * InvalidInputException constructor comment.
26          */
27         public InvalidInputException() {
28                 super();
29         }
30
31         /**
32          * InvalidInputException constructor comment.
33          * 
34          * @param s
35          *            java.lang.String
36          */
37         public InvalidInputException(String s) {
38                 super(s);
39         }
40 }