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

Annotation of /miscJava/CircuitBreaker/src/dk/thoerup/circuitbreaker/CircuitBreakerException.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 2448 - (hide annotations) (download)
Fri Mar 20 08:52:49 2015 UTC (9 years, 3 months ago) by torben
File size: 375 byte(s)
move java components to java folder
1 torben 467 package dk.thoerup.circuitbreaker;
2 torben 393
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     }

Properties

Name Value
svn:mergeinfo

  ViewVC Help
Powered by ViewVC 1.1.20