1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
| package cn.ksource.core.ftp;
|
| public class FtpConnectionException extends Exception{
|
| public FtpConnectionException(){
| super();
| }
|
| public FtpConnectionException(String msg){
| super(msg);
| }
|
| public FtpConnectionException(String msg,Throwable throwable){
| super(msg, throwable);
| }
|
| }
|
|