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 public DownloadException(final String message) {
10 super(message);
11 }
12
13 public DownloadException(final String message, final Exception cause) {
14 super(message, cause);
15 }
16
17 public DownloadException(final Exception cause) {
18 super(cause);
19 }
20 }