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.
sdny-jxpt/dxhy-oss/src/main/java/com/dxhy/oss/utils/SftpPoolException.java

15 lines
251 B

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);
}
}