1 8 package org.apache.avalon.phoenix.components.deployer.installer; 9 10 import org.apache.avalon.framework.CascadingException; 11 12 18 public final class InstallationException 19 extends CascadingException 20 { 21 26 public InstallationException( final String message ) 27 { 28 this( message, null ); 29 } 30 31 37 public InstallationException( final String message, final Throwable throwable ) 38 { 39 super( message, throwable ); 40 } 41 } 42 | Popular Tags |