ContextRuntimeException.java 366 Bytes
package com.irrigation.icl.exception;

/**
 * @author zhangchuanxi
 * @Description  自定义异常类
 */

public class ContextRuntimeException extends RuntimeException {

    public ContextRuntimeException(String message) {
        super(message);
    }

    public ContextRuntimeException(String message, Throwable cause) {
        super(message, cause);
    }
}