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

com.github.leeonky.dal.runtime.RuntimeException Maven / Gradle / Ivy

package com.github.leeonky.dal.runtime;

public class RuntimeException extends DalException {
    private final Throwable cause;

    public RuntimeException(String message, int position) {
        this(message, position, null);
    }

    public RuntimeException(String message, int position, Throwable cause) {
        super(message.trim(), position);
        this.cause = cause;
    }

    @Override
    public Throwable getCause() {
        return cause;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy