FTPException.java 661 B

123456789101112131415161718192021222324252627282930313233
  1. package com.behosoft.util.ftputil;
  2. import com.behosoft.framework.web.exception.CommonException;
  3. public class FTPException extends CommonException {
  4. /**
  5. *
  6. */
  7. private static final long serialVersionUID = -3659392247351868055L;
  8. @Override
  9. public String getKey() {
  10. return null;
  11. }
  12. public FTPException(String message) {
  13. super(message);
  14. }
  15. public FTPException(String message, String[] args, Throwable cause) {
  16. super(message, args, cause);
  17. }
  18. public FTPException(String message, String[] args) {
  19. super(message, args);
  20. }
  21. public FTPException(String message, Throwable cause) {
  22. super(message, cause);
  23. }
  24. }