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.mirroring;
18:
19: /**
20: * @author zubov
21: * @version $Id: DestinationSlaveException.java 690 2004-08-03 20:14:12Z zubov $
22: */
23: public class DestinationSlaveException extends SlaveException {
24: public DestinationSlaveException() {
25: super ();
26: }
27:
28: public DestinationSlaveException(Exception e) {
29: super (e);
30: }
31:
32: public DestinationSlaveException(String s) {
33: super (s);
34: }
35:
36: public DestinationSlaveException(Throwable throwable) {
37: super(throwable);
38: }
39: }
|