org.enodeframework.common.exception.EnodeInterruptException 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 EnodeInterruptException extends RuntimeException {
private static final long serialVersionUID = 5391482343851766256L;
public EnodeInterruptException(Throwable throwable) {
super(throwable);
}
}