org.springframework.batch.retry.backoff
Class BackOffInterruptedException

java.lang.Object
  extended by java.lang.Throwable
      extended by java.lang.Exception
          extended by java.lang.RuntimeException
              extended by org.springframework.core.NestedRuntimeException
                  extended by org.springframework.batch.retry.RetryException
                      extended by org.springframework.batch.retry.backoff.BackOffInterruptedException
All Implemented Interfaces:
Serializable

public class BackOffInterruptedException
extends RetryException

Exception class signifiying that an attempt to back off using a BackOffPolicy was interrupted, most likely by an InterruptedException during a call to Thread.sleep(long).

Since:
2.1
Author:
Rob Harrop
See Also:
Serialized Form

Constructor Summary
BackOffInterruptedException(String msg)
           
BackOffInterruptedException(String msg, Throwable cause)
           
 
Method Summary
 
Methods inherited from class org.springframework.core.NestedRuntimeException
contains, getMessage, getMostSpecificCause, getRootCause
 
Methods inherited from class java.lang.Throwable
fillInStackTrace, getCause, getLocalizedMessage, getStackTrace, initCause, printStackTrace, printStackTrace, printStackTrace, setStackTrace, toString
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

BackOffInterruptedException

public BackOffInterruptedException(String msg)

BackOffInterruptedException

public BackOffInterruptedException(String msg,
                                   Throwable cause)


Copyright © 2013 SpringSource. All Rights Reserved.