FrameworkException.java from BIRT at Krugle
Show FrameworkException.java syntax highlighted
/*******************************************************************************
* Copyright (c) 2004 Actuate Corporation.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Actuate Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.birt.core.framework;
/**
* A checked exception representing a failure.
* <p>
* Core exceptions contain a status object describing the
* cause of the exception.
* </p>
*
* @see IStatus
*/
public class FrameworkException extends Exception {
/**
*
*/
private static final long serialVersionUID = -9032025140135814484L;
/**
* Creates a new exception with the given status object. The message
* of the given status is used as the exception message.
*
* @param status the status object to be associated with this exception
*/
public FrameworkException(Exception ex) {
super(ex);
}
}
See more files for this project here