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

Contents of /CircuitBreaker/src/dk/thoerup/circuitbreaker/CircuitBreakerException.java

Parent Directory Parent Directory | Revision Log Revision Log


Revision 467 - (show annotations) (download)
Thu Oct 22 06:01:35 2009 UTC (14 years, 7 months ago) by torben
File size: 375 byte(s)
Rename package
1 package dk.thoerup.circuitbreaker;
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
12 public CircuitBreakerException(String string, Throwable t) {
13 super(string, t);
14 }
15
16 private static final long serialVersionUID = 1L;
17
18
19 }

Properties

Name Value
svn:mergeinfo

  ViewVC Help
Powered by ViewVC 1.1.20