1 package com.atlassian.plugin.servlet;
2
3 /**
4 * An exception was encountered while trying to write a resource to the client.
5 * This is usually an IOException meaning that the client aborted and is rarely
6 * interesting in production logs.
7 */
8 public class DownloadException extends Exception
9 {
10 public DownloadException(final String message)
11 {
12 super(message);
13 }
14
15 public DownloadException(final String message, final Exception cause)
16 {
17 super(message, cause);
18 }
19
20 public DownloadException(final Exception cause)
21 {
22 super(cause);
23 }
24 }