Uses of Class
org.jruby.RubyException
Packages that use RubyException
-
Uses of RubyException in org.jruby
Subclasses of RubyException in org.jrubyModifier and TypeClassDescriptionclassDeprecated.classThe Java representation of a Ruby ArgumentError.classThe Java representation of a Ruby ConcurrencyError.class/** The Java representation of a Ruby DomainError.classThe Java representation of a Ruby EncodingError.static classstatic classstatic classstatic classclassThe Java representation of a Ruby EOFError.classThe Java representation of a Ruby Fatal.classThe Java representation of a Ruby FiberError.classThe Java representation of a Ruby FloatDomainError.classThe Java representation of a Ruby FrozenError.classThe Java representation of a Ruby IndexError.classThe Java representation of a Ruby Interrupt.classThe Java representation of a Ruby InterruptedRegexpError.static classclassThe Java representation of a Ruby IOError.classclassThe Java representation of a Ruby LoadError.classThe Java representation of a Ruby LocalJumpError.classThe Java representation of a Ruby NameError.classThe Java representation of a Ruby ArgumentError.classThe Java representation of a Ruby ArgumentError.classThe Java representation of a Ruby NoMemoryError.classThe Java representation of a Ruby NoMethodError.classThe Java representation of a Ruby NotImplementedError.classThe Java representation of a Ruby RangeError.classThe Java representation of a Ruby RegexpError.classThe Java representation of a Ruby RuntimeError.classThe Java representation of a Ruby ScriptError.classThe Java representation of a Ruby SecurityError.classThe Java representation of a Ruby SignalException.classThe Java representation of a Ruby StandardError.class/** The Java representation of a Ruby StopIteration.classThe Java representation of a Ruby SyntaxError.classThe Java representation of a Ruby SystemCallError.classThe Java representation of a Ruby SystemExit.classThe Java representation of a Ruby SystemStackError.classThe Java representation of a Ruby ThreadError.classThe Java representation of a Ruby TypeError.classThe Java representation of a Ruby UncaughtThrowError.classThe Java representation of a Ruby ZeroDivisionError.Methods in org.jruby that return RubyExceptionModifier and TypeMethodDescriptionRubyException.exception(IRubyObject[] args) static RubyExceptionRubyNameError.exception(ThreadContext context, IRubyObject recv, IRubyObject message) static RubyExceptionRubyNameError.exception(ThreadContext context, IRubyObject recv, IRubyObject message, IRubyObject name) static RubyExceptionRubyException.newException(Ruby runtime, RubyClass exceptionClass, String msg) static RubyExceptionRubyException.newException(ThreadContext context, RubyClass exceptionClass, RubyString message) Construct a new RubyException object from the given exception class and message.static RubyExceptionRubyException.newException(ThreadContext context, RubyClass exceptionClass, IRubyObject... args) Construct a new RubyException object from the given exception class and message.static RubyExceptionRubyNoMethodError.newNoMethodError(IRubyObject recv, IRubyObject message, IRubyObject name, IRubyObject args) static RubyExceptionRubyNoMethodError.newNoMethodError(IRubyObject recv, IRubyObject message, IRubyObject name, IRubyObject args, boolean privateCall) Methods in org.jruby with parameters of type RubyExceptionModifier and TypeMethodDescriptionvoidRuby.printError(RubyException ex) Prints a Ruby exception with backtrace to the configured stderr stream.static IRubyObjectRubyException.retrieveBacktrace(RubyException exception) Retrieve the current backtrace object for a given exception. -
Uses of RubyException in org.jruby.exceptions
Methods in org.jruby.exceptions that return RubyExceptionModifier and TypeMethodDescriptionfinal RubyExceptionRaiseException.getException()Gets the exceptionMethods in org.jruby.exceptions with parameters of type RubyExceptionModifier and TypeMethodDescriptionstatic RaiseExceptionRaiseException.from(RubyException exception, IRubyObject backtrace) Deprecated.protected final voidRaiseException.setException(RubyException newException) Sets the exceptionprotected final voidRaiseException.setException(RubyException newException, boolean unused) Deprecated.Constructors in org.jruby.exceptions with parameters of type RubyExceptionModifierConstructorDescriptionException(String message, RubyException exception) protectedRaiseException(String message, RubyException exception) RaiseException(RubyException exception) Deprecated.RaiseException(RubyException exception, boolean unused) Deprecated.RaiseException(RubyException exception, IRubyObject backtrace) Deprecated. -
Uses of RubyException in org.jruby.runtime
Methods in org.jruby.runtime with parameters of type RubyExceptionModifier and TypeMethodDescriptionstatic IRubyObjectHelpers.isExceptionHandled(RubyException currentException, IRubyObject[] exceptions, ThreadContext context) static IRubyObjectHelpers.isExceptionHandled(RubyException currentException, IRubyObject exception0, IRubyObject exception1, IRubyObject exception2, ThreadContext context) static IRubyObjectHelpers.isExceptionHandled(RubyException currentException, IRubyObject exception0, IRubyObject exception1, ThreadContext context) static IRubyObjectHelpers.isExceptionHandled(RubyException currentException, IRubyObject exception, ThreadContext context) -
Uses of RubyException in org.jruby.runtime.backtrace
Methods in org.jruby.runtime.backtrace with parameters of type RubyExceptionModifier and TypeMethodDescriptionstatic voidTraceType.dumpBacktrace(RubyException exception) static voidTraceType.dumpException(RubyException exception) Deprecated.static voidTraceType.logException(RubyException exception) abstract StringTraceType.Format.printBacktrace(RubyException exception, boolean console) TraceType.printBacktrace(RubyException exception, boolean console) protected static StringTraceType.printBacktraceJRuby(RubyException exception, boolean console)
TraceType.logException(org.jruby.RubyException)