1 50 51 package org.apache.avalon.meta.info.verifier; 52 53 import org.apache.avalon.framework.CascadingException; 54 55 61 public final class VerifyException 62 extends CascadingException 63 { 64 69 public VerifyException( final String message ) 70 { 71 this( message, null ); 72 } 73 74 80 public VerifyException( final String message, final Throwable throwable ) 81 { 82 super( message, throwable ); 83 } 84 } 85 | Popular Tags |