You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
251 B
16 lines
251 B
2 years ago
|
package com.dxhy.oss.utils;
|
||
|
|
||
|
|
||
|
/**
|
||
|
* @author jiaohongyang
|
||
|
* @date 2019年3月26日 下午5:57:26
|
||
|
*/
|
||
|
|
||
|
public class SftpPoolException extends Exception {
|
||
|
public SftpPoolException(String message, Exception e) {
|
||
|
super(message, e);
|
||
|
}
|
||
|
|
||
|
|
||
|
}
|