1 16 17 package org.apache.commons.configuration; 18 19 import org.apache.commons.lang.exception.NestableRuntimeException; 20 21 29 public class ConfigurationRuntimeException extends NestableRuntimeException 30 { 31 35 public ConfigurationRuntimeException() 36 { 37 super(); 38 } 39 40 46 public ConfigurationRuntimeException(String message) 47 { 48 super(message); 49 } 50 51 57 public ConfigurationRuntimeException(Throwable cause) 58 { 59 super(cause); 60 } 61 62 69 public ConfigurationRuntimeException(String message, Throwable cause) 70 { 71 super(message, cause); 72 } 73 } 74 | Popular Tags |