1 /***
2 * JFoxSOAF, Service-Oriented Application Framework
3 *
4 * Copyright (C) www.huihoo.org
5 *
6 * Distributable under GNU LGPL license
7 *
8 * For more information, please visit: http://www.huihoo.org/jfox/jfoxsoaf
9 */
10
11 package org.huihoo.jfox.soaf.exception;
12
13 /***
14 * Represents exceptions raised when a service configration file error.
15 *
16 * @author <a href="mailto:founder_chen@yahoo.com.cn">Peter Cheng </a>
17 * @version $Revision: 1.3 $ $Date: 2004/10/20 07:23:15 $
18 * @version Revision: 1.0
19 */
20
21 public class ServiceConfigurationException extends NestedRuntimeException {
22
23 /***
24 * Construct a new exception with no cause and no detail message. Note
25 * modern JVMs may still track the exception that caused this one.
26 */
27 public ServiceConfigurationException() {
28 }
29
30 /***
31 * Construct a new exception with no cause and the specified detail message.
32 * Note modern JVMs may still track the exception that caused this one.
33 *
34 * @param message
35 * the message detailing the exception.
36 */
37 public ServiceConfigurationException(final String message) {
38 super(message);
39
40 }
41
42 /***
43 * Construct a new exception with the specified cause and no detail message.
44 *
45 * @param cause
46 * the exception that caused this one.
47 */
48 public ServiceConfigurationException(final String message,
49 final Throwable cause) {
50 super(message, cause);
51 }
52
53 /***
54 * Construct a new exception with the specified cause and no detail message.
55 *
56 * @param cause
57 * the exception that caused this one.
58 */
59 public ServiceConfigurationException(final Throwable cause) {
60 super(cause);
61 }
62 }