1 22 package org.jboss.system; 23 24 import org.jboss.util.NestedException; 25 26 34 public class ConfigurationException 35 extends NestedException 36 { 37 43 public ConfigurationException(String msg) { 44 super(msg); 45 } 46 47 54 public ConfigurationException(String msg, Throwable nested) { 55 super(msg, nested); 56 } 57 58 64 public ConfigurationException(Throwable nested) { 65 super(nested); 66 } 67 68 71 public ConfigurationException() { 72 super(); 73 } 74 } 75 | Popular Tags |