1 55 package org.apache.avalon.framework.context; 56 57 import org.apache.avalon.framework.CascadingException; 58 59 69 public class ContextException 70 extends CascadingException 71 { 72 77 public ContextException( final String message ) 78 { 79 this( message, null ); 80 } 81 82 88 public ContextException( final String message, final Throwable throwable ) 89 { 90 super( message, throwable ); 91 } 92 } 93 | Popular Tags |