/[projects]/CircuitBreaker/src/dk/thoerup/curcuitbreaker/CircuitBreakerException.java
ViewVC logotype

Annotation of /CircuitBreaker/src/dk/thoerup/curcuitbreaker/CircuitBreakerException.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 459 - (hide annotations) (download)
Wed Oct 21 07:52:08 2009 UTC (14 years, 8 months ago) by torben
File size: 375 byte(s)
Minor tweaks and comments
1 torben 393 package dk.thoerup.curcuitbreaker;
2    
3     public class CircuitBreakerException extends RuntimeException {
4     public CircuitBreakerException(Throwable e) {
5     super(e);
6     }
7    
8     public CircuitBreakerException(String string) {
9     super(string);
10     }
11 torben 459
12     public CircuitBreakerException(String string, Throwable t) {
13     super(string, t);
14     }
15 torben 393
16     private static final long serialVersionUID = 1L;
17    
18    
19     }

  ViewVC Help
Powered by ViewVC 1.1.20