blob: d3e421ee7f6fac74ef020d5fa94fbfe19bb5542a [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.core.parser;
public class ScannerException extends Exception {
private final IProblem problem;
public ScannerException( IProblem p )
{
problem = p;
}
/**
* @return
*/
public IProblem getProblem()
{
return problem;
}
}