blob: 2344bf9f95fa55ff4dd676c6b5c6c95fdf22ed61 [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
* https://www.eclipse.org/legal/epl-2.0/
*
* 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;
}
}