Class DownloadFailedException
- java.lang.Object
-
- java.lang.Throwable
-
- java.lang.Exception
-
- org.apache.maven.shared.io.download.DownloadFailedException
-
- All Implemented Interfaces:
java.io.Serializable
public class DownloadFailedException extends java.lang.Exception
The Download Failed Exception.- See Also:
- Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description private static long
serialVersionUID
private java.lang.String
url
-
Constructor Summary
Constructors Constructor Description DownloadFailedException(java.lang.String url, java.lang.String message)
DownloadFailedException(java.lang.String url, java.lang.String message, java.lang.Throwable cause)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getUrl()
-
-
-
Field Detail
-
serialVersionUID
private static final long serialVersionUID
- See Also:
- Constant Field Values
-
url
private java.lang.String url
-
-
Constructor Detail
-
DownloadFailedException
public DownloadFailedException(java.lang.String url, java.lang.String message, java.lang.Throwable cause)
- Parameters:
url
- The url.message
- The message.cause
- The cause of the problem.
-
DownloadFailedException
public DownloadFailedException(java.lang.String url, java.lang.String message)
- Parameters:
url
- The url.message
- The message.
-
-