blob: d714ab1393c2849a6a109ef058238d8849728fe9 [file] [log] [blame]
/**
*
*/
package de.uni_luebeck.inb.knowarc.usecases.invocation;
/**
* @author alanrw
*
*/
public class InvocationException extends Exception {
/**
*
*/
private static final long serialVersionUID = 437316164959631591L;
public InvocationException(String string) {
super(string);
}
public InvocationException(Exception e) {
super(e);
}
}