01: /*
02: * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
03: */
04: package com.tc.config.schema.setup;
05:
06: import com.tc.exception.ExceptionWrapper;
07: import com.tc.exception.ExceptionWrapperImpl;
08: import com.tc.exception.TCException;
09:
10: /**
11: * Thrown when the configuration system couldn't be set up. This should generally be treated as a fatal exception.
12: */
13: public class ConfigurationSetupException extends TCException {
14:
15: private static final ExceptionWrapper wrapper = new ExceptionWrapperImpl();
16:
17: public ConfigurationSetupException() {
18: super ();
19: }
20:
21: public ConfigurationSetupException(String message) {
22: super (wrapper.wrap(message));
23: }
24:
25: public ConfigurationSetupException(Throwable cause) {
26: super (cause);
27: }
28:
29: public ConfigurationSetupException(String message, Throwable cause) {
30: super(wrapper.wrap(message), cause);
31: }
32:
33: }
|