1 64 65 package com.jcorporate.expresso.core.misc; 66 67 72 73 import com.jcorporate.expresso.kernel.exception.ChainedException; 74 75 76 81 public class ConfigurationException 82 extends ChainedException { 83 86 public ConfigurationException() { 87 super(); 88 } 89 90 95 public ConfigurationException(String s) { 96 super(s); 97 } 98 99 105 public ConfigurationException(String s, Throwable t) { 106 super(s, t); 107 } 108 109 114 public ConfigurationException(Throwable t) { 115 super(t); 116 } 117 118 } 119 120 | Popular Tags |