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

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

package org.opencds.cqf.cql.exception;

public class InvalidOperatorArgument extends CqlException
{
    public InvalidOperatorArgument(String message)
    {
        super(message);
    }

    public InvalidOperatorArgument(String expected, String found)
    {
        super(String.format("Expected %s, Found %s", expected, found));
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy