Coverage Report - org.apache.maven.shared.io.download.DownloadFailedException
 
Classes in this File Line Coverage Branch Coverage Complexity
DownloadFailedException
100%
7/7
N/A
1
 
 1  
 package org.apache.maven.shared.io.download;
 2  
 
 3  
 public class DownloadFailedException
 4  
     extends Exception
 5  
 {
 6  
     
 7  
     private static final long serialVersionUID = 1L;
 8  
     
 9  
     private String url;
 10  
 
 11  
     public DownloadFailedException( String url, String message, Throwable cause )
 12  
     {
 13  8
         super( message, cause );
 14  8
         this.url = url;
 15  8
     }
 16  
 
 17  
     public DownloadFailedException( String url, String message )
 18  
     {
 19  2
         super( message );
 20  2
         this.url = url;
 21  2
     }
 22  
     
 23  
     public String getUrl()
 24  
     {
 25  1
         return url;
 26  
     }
 27  
 
 28  
 }