public class

JobMethodInvocationFailedException

extends NestedRuntimeException
java.lang.Object
   ↳ java.lang.Throwable
     ↳ java.lang.Exception
       ↳ java.lang.RuntimeException
         ↳ org.springframework.core.NestedRuntimeException
           ↳ org.springframework.scheduling.quartz.JobMethodInvocationFailedException

Class Overview

Unchecked exception that wraps an exception thrown from a target method. Propagated to the Quartz scheduler from a Job that reflectively invokes an arbitrary target method.

Summary

Public Constructors
JobMethodInvocationFailedException(MethodInvoker methodInvoker, Throwable cause)
Constructor for JobMethodInvocationFailedException.
[Expand]
Inherited Methods
From class org.springframework.core.NestedRuntimeException
From class java.lang.Throwable
From class java.lang.Object

Public Constructors

public JobMethodInvocationFailedException (MethodInvoker methodInvoker, Throwable cause)

Constructor for JobMethodInvocationFailedException.

Parameters
methodInvoker the MethodInvoker used for reflective invocation
cause the root cause (as thrown from the target method)