1 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 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 } 34 | Popular Tags |