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

org.embulk.jruby.JRubyRuntimeException Maven / Gradle / Ivy

package org.embulk.jruby;

public final class JRubyRuntimeException extends RuntimeException {
    public JRubyRuntimeException(final Throwable cause) {
        super("Failed in JRuby runtime: " + cause.getMessage(), cause);
    }

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




© 2015 - 2025 Weber Informatics LLC | Privacy Policy