blob: 362d5caa2a12660dbc38ade921f79258ba779d12 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 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 v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* Hisashi MIYASHITA - initial API and implementation
*******************************************************************************/
package org.eclipse.actf.ai.fennec.treemanager;
public class TreeManagerInterruptedException extends TreeManagerException {
private static final long serialVersionUID = -1029176053941063206L;
public TreeManagerInterruptedException(int status, String message, Throwable cause) {
super(status, message, cause);
}
public TreeManagerInterruptedException(int status, String message) {
super(status, message);
}
}