public static class

JRubyScriptUtils.JRubyExecutionException

extends NestedRuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.springframework.core.NestedRuntimeException
           ↳ org.springframework.scripting.jruby.JRubyScriptUtils.JRubyExecutionException

Class Overview

Exception thrown in response to a JRuby RaiseException being thrown from a JRuby method invocation.

Introduced because the RaiseException class does not have useful toString(), getMessage(), and printStackTrace() implementations.

Summary

Public Constructors
JRubyScriptUtils.JRubyExecutionException(RaiseException ex)
Create a new JRubyException, wrapping the given JRuby RaiseException.
[Expand]
Inherited Methods
From class org.springframework.core.NestedRuntimeException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public JRubyScriptUtils.JRubyExecutionException (RaiseException ex)

Create a new JRubyException, wrapping the given JRuby RaiseException.

Parameters
ex the cause (must not be null)