01: package org.enhydra.shark.webclient.spec;
02:
03: import com.lutris.util.ChainedException;
04:
05: public class WlhException extends ChainedException {
06:
07: /**
08: * Public constructor to initialize an exception with a user message
09: * and the exception that spawned it
10: */
11: public WlhException(String msg, Throwable ex) {
12: super (msg, ex);
13: }
14:
15: /**
16: * Public constructor to initialize an exception with a user message
17: */
18: public WlhException(String msg) {
19: super(msg);
20: }
21: }
|