1 17 18 19 package org.apache.commons.digester.xmlrules; 20 21 22 27 28 public class DigesterLoadingException extends Exception { 29 30 private Throwable cause = null; 31 32 35 public DigesterLoadingException(String msg) { 36 super(msg); 37 } 38 39 42 public DigesterLoadingException(Throwable cause) { 43 this(cause.getMessage()); 44 this.cause = cause; 45 } 46 47 51 public DigesterLoadingException(String msg, Throwable cause) { 52 this(msg); 53 this.cause = cause; 54 } 55 56 } 57 | Popular Tags |