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

public class ContextRuntimeException extends RuntimeException {

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

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