All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.opencds.cqf.cql.exception.CqlException Maven / Gradle / Ivy

package org.opencds.cqf.cql.exception;

import org.apache.commons.lang3.exception.ExceptionUtils;

public class CqlException extends RuntimeException
{
    public CqlException(String message)
    {
        super(message);
    }
    public CqlException(String message, Throwable cause) {
        super(message, cause);
    }
    public CqlException(Throwable cause) {
        super(cause == null ? null : String.format("Unexpected exception caught during execution: %s", cause.toString(), cause));
        if (cause != null) {
            cause.printStackTrace(System.err);
        }
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy