blob: 90246f0a00dcbeb9c6789330ddaf7eeb0803b4a5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001 Rational Software Corp. and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Common Public License v0.5
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/cpl-v05.html
*
* Contributors:
* Rational Software - initial implementation
******************************************************************************/
package org.eclipse.cdt.internal.core.parser;
public class ParserException extends Exception {
public ParserException(Token t) {
}
public ParserException( String msg )
{
super( msg );
}
}