Skip to main content
aboutsummaryrefslogtreecommitdiffstats
blob: 8f299523ef7a9678e201656139f9b7beeba66f3e (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
/*******************************************************************************
 * 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 ScannerException extends Exception {

	/**
	 * Constructor for ScannerException.
	 */
	public ScannerException() {
		super();
	}

	/**
	 * Constructor for ScannerException.
	 * @param s
	 */
	public ScannerException(String s) {
		super(s);
	}

}

Back to the top