Makefile fixup
[org.ibex.tool.git] / src / org / eclipse / jdt / core / compiler / InvalidInputException.java
1 /*******************************************************************************
2  * Copyright (c) 2000, 2004 IBM Corporation and others.
3  * All rights reserved. This program and the accompanying materials 
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  * 
8  * Contributors:
9  *     IBM Corporation - initial API and implementation
10  *******************************************************************************/
11
12 package org.eclipse.jdt.core.compiler;
13
14 /**
15  * Exception thrown by a scanner when encountering lexical errors.
16  */
17 public class InvalidInputException extends Exception {
18
19         private static final long serialVersionUID = 2909732853499731592L; // backward compatible
20
21         /**
22          * Creates a new exception with no detail message.
23          */
24         public InvalidInputException() {
25                 super();
26         }
27         /**
28          * Creates a new exception with the given detail message.
29          * @param message the detail message
30          */
31         public InvalidInputException(String message) {
32                 super(message);
33         }
34 }