01: /*
02: * Copyright (c) 2002-2006 by OpenSymphony
03: * All rights reserved.
04: */
05: package com.opensymphony.xwork.config;
06:
07: import com.opensymphony.xwork.XworkException;
08:
09: /**
10: * ConfigurationException
11: *
12: * @author Jason Carreira
13: */
14: public class ConfigurationException extends XworkException {
15:
16: /**
17: * Constructs a <code>ConfigurationException</code> with no detail message.
18: */
19: public ConfigurationException() {
20: }
21:
22: /**
23: * Constructs a <code>ConfigurationException</code> with the specified
24: * detail message.
25: *
26: * @param s the detail message.
27: */
28: public ConfigurationException(String s) {
29: super (s);
30: }
31:
32: /**
33: * Constructs a <code>ConfigurationException</code> with the specified
34: * detail message.
35: *
36: * @param s the detail message.
37: */
38: public ConfigurationException(String s, Object target) {
39: super (s, target);
40: }
41:
42: /**
43: * Constructs a <code>ConfigurationException</code> with no detail message.
44: */
45: public ConfigurationException(Throwable cause) {
46: super (cause);
47: }
48:
49: /**
50: * Constructs a <code>ConfigurationException</code> with no detail message.
51: */
52: public ConfigurationException(Throwable cause, Object target) {
53: super (cause, target);
54: }
55:
56: /**
57: * Constructs a <code>ConfigurationException</code> with the specified
58: * detail message.
59: *
60: * @param s the detail message.
61: */
62: public ConfigurationException(String s, Throwable cause) {
63: super (s, cause);
64: }
65:
66: /**
67: * Constructs a <code>ConfigurationException</code> with the specified
68: * detail message.
69: *
70: * @param s the detail message.
71: */
72: public ConfigurationException(String s, Throwable cause,
73: Object target) {
74: super(s, cause, target);
75: }
76: }
|