/******************************************************************************* * Copyright (c) 2016 Weasis Team and others. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html * *******************************************************************************/ package org.weasis.dicom.explorer.wado; public class DownloadException extends Exception { private static final long serialVersionUID = 4700371646816347618L; public DownloadException() { super(); } public DownloadException(String message, Throwable cause) { super(message, cause); } public DownloadException(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace) { super(message, cause, enableSuppression, writableStackTrace); } public DownloadException(String message) { super(message); } public DownloadException(Throwable cause) { super(cause); } }