Package org.springframework.retry

Examples of org.springframework.retry.RetryException


  public Exception getException(String msg) throws Exception {
    return new RetryException(msg);
  }

  public Exception getException(String msg, Throwable t) throws Exception {
    return new RetryException(msg, t);
  }
View Full Code Here

TOP

Related Classes of org.springframework.retry.RetryException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.