1 16 17 package org.apache.commons.configuration; 18 19 import org.apache.commons.lang.exception.NestableException; 20 21 28 public class ConfigurationException extends NestableException 29 { 30 34 public ConfigurationException() 35 { 36 super(); 37 } 38 39 45 public ConfigurationException(String message) 46 { 47 super(message); 48 } 49 50 56 public ConfigurationException(Throwable cause) 57 { 58 super(cause); 59 } 60 61 68 public ConfigurationException(String message, Throwable cause) 69 { 70 super(message, cause); 71 } 72 } 73 | Popular Tags |