1 19 20 package org.apache.avalon.excalibur.datasource.ids; 21 22 import org.apache.avalon.framework.CascadingException; 23 24 31 public class IdException 32 extends CascadingException 33 { 34 37 42 public IdException( String message ) 43 { 44 super( message ); 45 } 46 47 53 public IdException( String message, Throwable throwable ) 54 { 55 super( message, throwable ); 56 } 57 } 58 59 | Popular Tags |