1 8 package org.apache.avalon.phoenix.interfaces; 9 10 import org.apache.avalon.framework.CascadingException; 11 12 17 public class ManagerException 18 extends CascadingException 19 { 20 public ManagerException( final String message ) 21 { 22 this( message, null ); 23 } 24 25 public ManagerException( final String message, final Throwable throwable ) 26 { 27 super( message, throwable ); 28 } 29 } 30 | Popular Tags |