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

fun.langel.cql.exception.MappingException Maven / Gradle / Ivy

The newest version!
package fun.langel.cql.exception;

/**
 * @author [email protected](GuHan)
 * @since 2022/8/11 11:11
 **/
public class MappingException extends RuntimeException {

    public MappingException() {
    }

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

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

    public MappingException(Throwable cause) {
        super(cause);
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy