123456789101112131415161718192021222324252627282930313233 |
- package com.behosoft.util.ftputil;
- import com.behosoft.framework.web.exception.CommonException;
- public class FTPException extends CommonException {
- /**
- *
- */
- private static final long serialVersionUID = -3659392247351868055L;
- @Override
- public String getKey() {
- return null;
- }
- public FTPException(String message) {
- super(message);
- }
- public FTPException(String message, String[] args, Throwable cause) {
- super(message, args, cause);
- }
- public FTPException(String message, String[] args) {
- super(message, args);
- }
- public FTPException(String message, Throwable cause) {
- super(message, cause);
- }
- }
|