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

com.github.basking2.sdsai.itrex.SExprRuntimeException Maven / Gradle / Ivy

There is a newer version: 1.1.23
Show newest version
package com.github.basking2.sdsai.itrex;

/**
 */
public class SExprRuntimeException extends RuntimeException {
    private static final long serialVersionUID = 3976798317524183454L;

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

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy