blob: c8d20a77d4814a6eeee92e7a35a58c23c286b9d2 [file] [log] [blame]
package org.eclipse.jdt.internal.compiler.parser;
/*
* (c) Copyright IBM Corp. 2000, 2001.
* All Rights Reserved.
*/
import org.eclipse.jdt.internal.compiler.*;
public class InvalidInputException extends Exception {
/**
* InvalidInputException constructor comment.
*/
public InvalidInputException() {
super();
}
/**
* InvalidInputException constructor comment.
* @param s java.lang.String
*/
public InvalidInputException(String s) {
super(s);
}
}