blob: 3f10dc034429d9214c3b495fb4b0b5aa076d6896 [file] [log] [blame]
package org.eclipse.jem.internal.proxy.common.remote;
/*******************************************************************************
* Copyright (c) 2001, 2003 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:
* IBM Corporation - initial API and implementation
*******************************************************************************/
/*
* $RCSfile: IOCommandException.java,v $
* $Revision: 1.3 $ $Date: 2005/06/16 17:46:14 $
*/
import java.io.IOException;
import org.eclipse.jem.internal.proxy.common.CommandException;
/**
* A command exception occured while processing an io request
* in a callback stream. This exception wrappers the command exception.
*/
public class IOCommandException extends IOException {
/**
* Comment for <code>serialVersionUID</code>
*
* @since 1.1.0
*/
private static final long serialVersionUID = -2308947195164382779L;
protected CommandException fException;
public IOCommandException(CommandException e) {
fException = e;
}
public CommandException getException() {
return fException;
}
public String getMessage() {
return fException.getMessage();
}
public void printStackTrace() {
fException.printStackTrace();
}
public void printStackTrace(java.io.PrintStream p) {
fException.printStackTrace(p);
}
public void printStackTrace(java.io.PrintWriter p) {
fException.printStackTrace(p);
}
}