01: package com.sun.portal.admin.common.util;
02:
03: /**
04: * $Id: UploadDownloadException.java,v 1.2 2005/06/17 07:43:24 rg149970 Exp $
05: * Copyright 2004 Sun Microsystems, Inc. All
06: * rights reserved. Use of this product is subject
07: * to license terms. Federal Acquisitions:
08: * Commercial Software -- Government Users
09: * Subject to Standard License Terms and
10: * Conditions.
11: *
12: * Sun, Sun Microsystems, the Sun logo, and Sun ONE
13: * are trademarks or registered trademarks of Sun Microsystems,
14: * Inc. in the United States and other countries.
15: */
16:
17: public class UploadDownloadException extends Exception {
18:
19: public UploadDownloadException() {
20: super ();
21: }
22:
23: public UploadDownloadException(String message) {
24: super (message);
25: }
26:
27: public UploadDownloadException(String message, Throwable cause) {
28: super (message, cause);
29: }
30:
31: public UploadDownloadException(Throwable cause) {
32: super(cause);
33: }
34:
35: }
|