1 package org.apache.maven.artifact.metadata; 2 3 18 19 23 public class ArtifactMetadataRetrievalException 24 extends Exception  25 { 26 public ArtifactMetadataRetrievalException( String message ) 27 { 28 super( message ); 29 } 30 31 public ArtifactMetadataRetrievalException( Throwable cause ) 32 { 33 super( cause ); 34 } 35 36 public ArtifactMetadataRetrievalException( String message, Throwable cause ) 37 { 38 super( message, cause ); 39 } 40 } 41 | Popular Tags |