1 55 package org.apache.avalon.framework.configuration; 56 57 import org.apache.avalon.framework.CascadingException; 58 59 66 public class ConfigurationException 67 extends CascadingException 68 { 69 74 public ConfigurationException( final String message ) 75 { 76 this( message, null ); 77 } 78 79 85 public ConfigurationException( final String message, final Throwable throwable ) 86 { 87 super( message, throwable ); 88 } 89 } 90 | Popular Tags |