blob: f7c8ea1ceb66bba33b3bcfc8125d24e3e5963f7c [file] [log] [blame]
/*
*/
package org.taverna.server.localworker.remote;
/**
* Exception that indicates that the implementation is still working on
* processing the operation. Note that though this is an exception, it is <i>not
* a failure</i>.
*
* @author Donal Fellows
*/
@SuppressWarnings("serial")
public class StillWorkingOnItException extends Exception {
public StillWorkingOnItException(String string) {
super(string);
}
}