org.enodeframework.common.exception.EnodeClassNotFoundException 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 EnodeClassNotFoundException extends RuntimeException {
private static final long serialVersionUID = 2514628822193223823L;
public EnodeClassNotFoundException() {
super();
}
public EnodeClassNotFoundException(String msg) {
super(msg);
}
public EnodeClassNotFoundException(Throwable cause) {
super(cause);
}
public EnodeClassNotFoundException(String msg, Throwable cause) {
super(msg, cause);
}
}