Skip to main content
summaryrefslogtreecommitdiffstats
blob: 90246f0a00dcbeb9c6789330ddaf7eeb0803b4a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*******************************************************************************
 * 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 ); 
	}
}

Back to the top