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

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

package com.github.leeonky.dal.runtime;

import com.github.leeonky.util.InvocationException;

public class InputException extends RuntimeException {
    public InputException(Throwable throwable) {
        super(throwable.getMessage(), 0, new InvocationException(throwable));
    }

    public Throwable getInputClause() {
        return getCause().getCause();
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy