01: /*
02: * MCS Media Computer Software Copyright (c) 2006 by MCS
03: * -------------------------------------- Created on 26.07.2006 by W.Klaas
04: *
05: * Licensed under the Apache License, Version 2.0 (the "License"); you may not
06: * use this file except in compliance with the License. You may obtain a copy of
07: * the License at
08: *
09: * http://www.apache.org/licenses/LICENSE-2.0
10: *
11: * Unless required by applicable law or agreed to in writing, software
12: * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
13: * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
14: * License for the specific language governing permissions and limitations under
15: * the License.
16: */
17: package de.mcs.jmeasurement.test.proxy;
18:
19: public class ProxyException extends Exception {
20:
21: /**
22: *
23: */
24: private static final long serialVersionUID = 5546019030702459125L;
25:
26: public ProxyException() {
27: super ();
28: // TODO Auto-generated constructor stub
29: }
30:
31: public ProxyException(String message) {
32: super (message);
33: // TODO Auto-generated constructor stub
34: }
35:
36: public ProxyException(String message, Throwable cause) {
37: super (message, cause);
38: // TODO Auto-generated constructor stub
39: }
40:
41: public ProxyException(Throwable cause) {
42: super (cause);
43: // TODO Auto-generated constructor stub
44: }
45:
46: }
|