1 8 package org.apache.avalon.excalibur.property; 9 10 import org.apache.avalon.framework.CascadingException; 11 12 19 public class PropertyException 20 extends CascadingException 21 { 22 27 public PropertyException( final String message ) 28 { 29 this( message, null ); 30 } 31 32 38 public PropertyException( final String message, final Throwable throwable ) 39 { 40 super( message, throwable ); 41 } 42 } 43 | Popular Tags |