View Javadoc
1 /*** 2 * ConfigurationException.java 3 */ 4 package com.rhi.architecture.config; 5 6 import org.apache.commons.lang.exception.NestableRuntimeException; 7 8 /*** 9 * ConfigurationException.java 10 * 11 * @author pete mckinstry 12 * @copyright 2002, All rights reserved. 13 */ 14 public class ConfigurationException extends NestableRuntimeException { 15 16 /*** 17 * Constructor for ConfigurationException. 18 */ 19 public ConfigurationException() { 20 super(); 21 } 22 23 /*** 24 * Constructor for ConfigurationException. 25 * @param msg 26 */ 27 public ConfigurationException(String msg) { 28 super(msg); 29 } 30 31 /*** 32 * Constructor for ConfigurationException. 33 * @param t 34 */ 35 public ConfigurationException(Throwable t) { 36 super(t); 37 } 38 39 /*** 40 * Constructor for ConfigurationException. 41 * @param msg 42 * @param t 43 */ 44 public ConfigurationException(String msg, Throwable t) { 45 super(msg, t); 46 } 47 48 }

This page was automatically generated by Maven