1 17 18 package org.apache.avalon.repository.meta; 19 20 import org.apache.avalon.repository.RepositoryException; 21 22 28 public class MetaException extends RepositoryException 29 { 30 35 public MetaException( final String message ) 36 { 37 this( message, null ); 38 } 39 40 46 public MetaException( final String message, final Throwable cause ) 47 { 48 super( message, cause ); 49 } 50 } 51 52 | Popular Tags |