01: /*
02: * File: ConnectionException.java
03: * Project: jMOS, com.aranova.java.jmos.util
04: * Revision: 0.9 - Inicial
05: * Date: 14-nov-2005 16:07:48
06: *
07: * Copyright (C) Aragón Innovación Tecnológica S.L.L.
08: * All rights reserved.
09: *
10: * This software is distributed under the terms of the Aranova License version 1.0.
11: * See the terms of the Aranova License in the documentation provided with this software.
12: */
13:
14: package com.aranova.java.jmos.util;
15:
16: /**
17: * Excepción de connexión.
18: *
19: * @author <a href="http://www.aranova.net/contactar/">Daniel Sánchez</a>
20: * @version 0.9.1
21: * @since 0.9
22: */
23: public class ConnectionException extends Exception {
24: private static final long serialVersionUID = 1L;
25:
26: /**
27: *
28: */
29: public ConnectionException() {
30: super ();
31: // TODO Auto-generated constructor stub
32: }
33:
34: /**
35: * @param message
36: * @param cause
37: */
38: public ConnectionException(final String message,
39: final Throwable cause) {
40: super (message, cause);
41: }
42:
43: /**
44: * @param message
45: */
46: public ConnectionException(final String message) {
47: super (message);
48: }
49:
50: /**
51: * @param cause
52: */
53: public ConnectionException(final Throwable cause) {
54: super(cause);
55: }
56:
57: }
|