source: branches/objectmq-1.0/src/omq/exception/RetryException.java @ 33

Last change on this file since 33 was 33, checked in by amoreno, 11 years ago

new release version

File size: 296 bytes
Line 
1package omq.exception;
2
3public 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.