source:
branches/objectmq-1.0/src/omq/exception/RetryException.java
@
110
Last change on this file since 110 was 33, checked in by amoreno, 11 years ago | |
---|---|
File size: 296 bytes |
Line | |
---|---|
1 | package omq.exception; |
2 | |
3 | public class RetryException extends Exception { |
4 | |
5 | /** |
6 | * |
7 | */ |
8 | private static final long serialVersionUID = 5450662697539597010L; |
9 | |
10 | public RetryException(int retries, long timeout) { |
11 | super("RetyException num retries="+retries+" timeout per retry="+timeout); |
12 | } |
13 | |
14 | |
15 | |
16 | } |
Note: See TracBrowser
for help on using the repository browser.