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