org.enodeframework.common.exception.HandlerNotFoundException Maven / Gradle / Ivy
package org.enodeframework.common.exception;
/**
* @author [email protected]
*/
public class HandlerNotFoundException extends EnodeException {
public HandlerNotFoundException() {
super();
}
public HandlerNotFoundException(String msg) {
super(msg);
}
public HandlerNotFoundException(Throwable cause) {
super(cause);
}
public HandlerNotFoundException(String msg, Throwable cause) {
super(msg, cause);
}
}