Beispiel #1
0
 /**
  * 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);
 }
Beispiel #2
0
 /**
  * Constructor for ChainedException.
  *
  * @param _resourceBundleKey the resource bundle key for the message of this exception
  */
 public ChainedException(ResourceBundleKey _resourceBundleKey) {
   this(_resourceBundleKey.getString());
 }