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

org.jruby.ir.runtime.IRJump Maven / Gradle / Ivy

package org.jruby.ir.runtime;

import org.jruby.util.cli.Options;

/**
 * Created by headius on 3/10/16.
 */
public class IRJump extends RuntimeException {
    public IRJump() {
        super();
    }

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

    @Override
    public Throwable fillInStackTrace() {
        if (Options.JUMP_BACKTRACE.load()) {
            return super.fillInStackTrace();
        }

        return this;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy