01: package U2.T2.Msg; 02: 03: public class T2Exception extends Exception { 04: 05: public T2Exception(String msg) { 06: super (msg); 07: } 08: 09: public T2Exception(String msg, Throwable cause) { 10: 11: super (msg + "\n" + cause.getMessage(), cause); 12: } 13: 14: }