blob: 36bb412254e43317188b1942511a9b0225f8abd6 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2000, 2007 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wst.jsdt.astview.views;
public abstract class ExceptionAttribute extends ASTAttribute {
protected Throwable fException= null;
public Throwable getException() {
return fException;
}
}