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 super( string );
12 }
13
14 public DownloadException( String string,
15 Throwable throwable )
16 {
17 super( string, throwable );
18 }
19
20 public DownloadException( Throwable throwable )
21 {
22 super( throwable );
23 }
24 }