KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > tc > config > schema > setup > ConfigurationSetupException


1 /*
2  * All content copyright (c) 2003-2006 Terracotta, Inc., except as may otherwise be noted in a separate copyright notice. All rights reserved.
3  */

4 package com.tc.config.schema.setup;
5
6 import com.tc.exception.ExceptionWrapper;
7 import com.tc.exception.ExceptionWrapperImpl;
8 import com.tc.exception.TCException;
9
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 JavaDoc message) {
22     super(wrapper.wrap(message));
23   }
24
25   public ConfigurationSetupException(Throwable JavaDoc cause) {
26     super(cause);
27   }
28
29   public ConfigurationSetupException(String JavaDoc message, Throwable JavaDoc cause) {
30     super(wrapper.wrap(message), cause);
31   }
32
33 }
34
Popular Tags