1 16 17 package org.apache.commons.logging; 18 19 20 30 31 public class LogConfigurationException extends RuntimeException { 32 33 34 37 public LogConfigurationException() { 38 39 super(); 40 41 } 42 43 44 49 public LogConfigurationException(String message) { 50 51 super(message); 52 53 } 54 55 56 62 public LogConfigurationException(Throwable cause) { 63 64 this((cause == null) ? null : cause.toString(), cause); 65 66 } 67 68 69 75 public LogConfigurationException(String message, Throwable cause) { 76 77 super(message + " (Caused by " + cause + ")"); 78 this.cause = cause; 80 } 81 82 83 86 protected Throwable cause = null; 87 88 89 92 public Throwable getCause() { 93 94 return (this.cause); 95 96 } 97 98 99 } 100 | Popular Tags |