org.enodeframework.common.exception.HandlerNotFoundException Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of enode Show documentation
Show all versions of enode Show documentation
The enodeframework core implementation.
package org.enodeframework.common.exception;
/**
* @author [email protected]
*/
public class HandlerNotFoundException extends RuntimeException {
public HandlerNotFoundException() {
super();
}
public HandlerNotFoundException(String msg) {
super(msg);
}
public HandlerNotFoundException(Throwable cause) {
super(cause);
}
public HandlerNotFoundException(String msg, Throwable cause) {
super(msg, cause);
}
}