package hk.reality.stock.service.exception; public class DownloadException extends RuntimeException { public DownloadException() { // TODO Auto-generated constructor stub } public DownloadException(String detailMessage) { super(detailMessage); // TODO Auto-generated constructor stub } public DownloadException(Throwable throwable) { super(throwable); // TODO Auto-generated constructor stub } public DownloadException(String detailMessage, Throwable throwable) { super(detailMessage, throwable); // TODO Auto-generated constructor stub } }