01: /*
02: * This file is part of DrFTPD, Distributed FTP Daemon.
03: *
04: * DrFTPD is free software; you can redistribute it and/or modify it under the
05: * terms of the GNU General Public License as published by the Free Software
06: * Foundation; either version 2 of the License, or (at your option) any later
07: * version.
08: *
09: * DrFTPD is distributed in the hope that it will be useful, but WITHOUT ANY
10: * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
11: * A PARTICULAR PURPOSE. See the GNU General Public License for more details.
12: *
13: * You should have received a copy of the GNU General Public License along with
14: * DrFTPD; if not, write to the Free Software Foundation, Inc., 59 Temple Place,
15: * Suite 330, Boston, MA 02111-1307 USA
16: */
17: package net.sf.drftpd;
18:
19: /**
20: * @author mog
21: * @version $Id: SlaveUnavailableException.java,v 1.1 2004/03/01 00:21:07 mog
22: * Exp $
23: */
24: public class SlaveUnavailableException extends Exception {
25: public SlaveUnavailableException() {
26: super ();
27: }
28:
29: public SlaveUnavailableException(String message) {
30: super (message);
31: }
32:
33: public SlaveUnavailableException(String message, Throwable cause) {
34: super (message, cause);
35: }
36:
37: public SlaveUnavailableException(Throwable cause) {
38: super(cause);
39: }
40: }
|