package net.catpad.infobus;
/**
* Exception that every class inheriting from the CommQueueItem should throw
* whenever its execute method fails.
* The reason of the failure is then passed to this exception's constructor
*
* @author Michael Gertelman
*
*/
public class CannotExecuteCommQueueItemException extends Exception {
private static final long serialVersionUID = 1L;
public CannotExecuteCommQueueItemException(String msg) {
super(msg);
}
public CannotExecuteCommQueueItemException(Throwable t) {
super(t);
}
public CannotExecuteCommQueueItemException(String msg, Throwable t) {
super(msg, t);
}
}
|