01: package org.kohsuke.javanet.approval;
02:
03: /**
04: * @author Kohsuke Kawaguchi
05: */
06: public class RetryException extends Exception {
07: public RetryException(String message) {
08: super (message);
09: }
10:
11: public RetryException(String message, Throwable cause) {
12: super (message, cause);
13: }
14:
15: public RetryException(Throwable cause) {
16: super(cause);
17: }
18: }
|