org.enodeframework.common.exception.IORuntimeException Maven / Gradle / Ivy
package org.enodeframework.common.exception;
/**
* Retry Exception
*
* @author [email protected]
*/
public class IORuntimeException extends EnodeException {
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);
}
}