Coverage Report - org.apache.maven.shared.downloader.DownloadException
 
Classes in this File Line Coverage Branch Coverage Complexity
DownloadException
0% 
N/A 
1
 
 1  
 package org.apache.maven.shared.downloader;
 2  
 
 3  
 /**
 4  
  * @author Jason van Zyl
 5  
  */
 6  
 public class DownloadException
 7  
     extends Exception
 8  
 {
 9  
     public DownloadException( String string )
 10  
     {
 11  0
         super( string );
 12  0
     }
 13  
 
 14  
     public DownloadException( String string,
 15  
                               Throwable throwable )
 16  
     {
 17  0
         super( string, throwable );
 18  0
     }
 19  
 
 20  
     public DownloadException( Throwable throwable )
 21  
     {
 22  0
         super( throwable );
 23  0
     }
 24  
 }