1 8 package org.apache.avalon.excalibur.container; 9 10 import org.apache.avalon.framework.CascadingException; 11 12 17 public final class ContainerException 18 extends CascadingException 19 { 20 25 public ContainerException( final String message ) 26 { 27 this( message, null ); 28 } 29 30 36 public ContainerException( final String message, final Throwable throwable ) 37 { 38 super( message, throwable ); 39 } 40 } 41 | Popular Tags |