Uses of Class
org.jruby.RubyException
Packages that use RubyException
-
Uses of RubyException in org.jruby
Subclasses of RubyException in org.jrubyModifier and TypeClassDescriptionclass
Deprecated.class
The Java representation of a Ruby ArgumentError.class
The Java representation of a Ruby ConcurrencyError.class
/** The Java representation of a Ruby DomainError.class
The Java representation of a Ruby EncodingError.static class
static class
static class
static class
class
The Java representation of a Ruby EOFError.class
The Java representation of a Ruby Fatal.class
The Java representation of a Ruby FiberError.class
The Java representation of a Ruby FloatDomainError.class
The Java representation of a Ruby FrozenError.class
The Java representation of a Ruby IndexError.class
The Java representation of a Ruby Interrupt.class
The Java representation of a Ruby InterruptedRegexpError.static class
class
The Java representation of a Ruby IOError.class
class
The Java representation of a Ruby LoadError.class
The Java representation of a Ruby LocalJumpError.class
The Java representation of a Ruby NameError.class
The Java representation of a Ruby ArgumentError.class
The Java representation of a Ruby ArgumentError.class
The Java representation of a Ruby NoMemoryError.class
The Java representation of a Ruby NoMethodError.class
The Java representation of a Ruby NotImplementedError.class
The Java representation of a Ruby RangeError.class
The Java representation of a Ruby RegexpError.class
The Java representation of a Ruby RuntimeError.class
The Java representation of a Ruby ScriptError.class
The Java representation of a Ruby SecurityError.class
The Java representation of a Ruby SignalException.class
The Java representation of a Ruby StandardError.class
/** The Java representation of a Ruby StopIteration.class
The Java representation of a Ruby SyntaxError.class
The Java representation of a Ruby SystemCallError.class
The Java representation of a Ruby SystemExit.class
The Java representation of a Ruby SystemStackError.class
The Java representation of a Ruby ThreadError.class
The Java representation of a Ruby TypeError.class
The Java representation of a Ruby UncaughtThrowError.class
The Java representation of a Ruby ZeroDivisionError.Methods in org.jruby that return RubyExceptionModifier and TypeMethodDescriptionRubyException.exception
(IRubyObject[] args) static RubyException
RubyNameError.exception
(ThreadContext context, IRubyObject recv, IRubyObject message) static RubyException
RubyNameError.exception
(ThreadContext context, IRubyObject recv, IRubyObject message, IRubyObject name) static RubyException
RubyException.newException
(Ruby runtime, RubyClass exceptionClass, String msg) static RubyException
RubyException.newException
(ThreadContext context, RubyClass exceptionClass, RubyString message) Construct a new RubyException object from the given exception class and message.static RubyException
RubyException.newException
(ThreadContext context, RubyClass exceptionClass, IRubyObject... args) Construct a new RubyException object from the given exception class and message.static RubyException
RubyNoMethodError.newNoMethodError
(IRubyObject recv, IRubyObject message, IRubyObject name, IRubyObject args) static RubyException
RubyNoMethodError.newNoMethodError
(IRubyObject recv, IRubyObject message, IRubyObject name, IRubyObject args, boolean privateCall) Methods in org.jruby with parameters of type RubyExceptionModifier and TypeMethodDescriptionvoid
Ruby.printError
(RubyException ex) Prints a Ruby exception with backtrace to the configured stderr stream.static IRubyObject
RubyException.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 RubyException
RaiseException.getException()
Gets the exceptionMethods in org.jruby.exceptions with parameters of type RubyExceptionModifier and TypeMethodDescriptionstatic RaiseException
RaiseException.from
(RubyException exception, IRubyObject backtrace) Deprecated.protected final void
RaiseException.setException
(RubyException newException) Sets the exceptionprotected final void
RaiseException.setException
(RubyException newException, boolean unused) Deprecated.Constructors in org.jruby.exceptions with parameters of type RubyExceptionModifierConstructorDescriptionException
(String message, RubyException exception) protected
RaiseException
(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 IRubyObject
Helpers.isExceptionHandled
(RubyException currentException, IRubyObject[] exceptions, ThreadContext context) static IRubyObject
Helpers.isExceptionHandled
(RubyException currentException, IRubyObject exception0, IRubyObject exception1, IRubyObject exception2, ThreadContext context) static IRubyObject
Helpers.isExceptionHandled
(RubyException currentException, IRubyObject exception0, IRubyObject exception1, ThreadContext context) static IRubyObject
Helpers.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 void
TraceType.dumpBacktrace
(RubyException exception) static void
TraceType.dumpException
(RubyException exception) Deprecated.static void
TraceType.logException
(RubyException exception) abstract String
TraceType.Format.printBacktrace
(RubyException exception, boolean console) TraceType.printBacktrace
(RubyException exception, boolean console) protected static String
TraceType.printBacktraceJRuby
(RubyException exception, boolean console)
TraceType.logException(org.jruby.RubyException)