org.enodeframework.common.exception.IORuntimeException 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;
/**
* Retry Exception
*
* @author [email protected]
*/
public class IORuntimeException extends RuntimeException {
private static final long serialVersionUID = 2976713867727370181L;
public IORuntimeException() {
super();
}
public IORuntimeException(String msg) {
super(msg);
}
public IORuntimeException(Throwable cause) {
super(cause);
}
public IORuntimeException(String msg, Throwable cause) {
super(msg, cause);
}
}