/** * Constructor for ChainedException. * * @param _resourceBundleKey the resource bundle key for the message of this exception * @param _parent the parent exception in the chain */ public ChainedException(ResourceBundleKey _resourceBundleKey, Throwable _parent) { this(_resourceBundleKey.getString(), _parent); }
/** * Constructor for ChainedException. * * @param _resourceBundleKey the resource bundle key for the message of this exception */ public ChainedException(ResourceBundleKey _resourceBundleKey) { this(_resourceBundleKey.getString()); }