001package lucee.runtime.net.ftp; 002 003import lucee.runtime.exp.ApplicationException; 004 005public class FTPException extends ApplicationException { 006 007 private static final long serialVersionUID = -8239701967074210430L; 008 009 public FTPException(String message) { 010 super(message); 011 } 012 public FTPException(Exception e) { 013 super(e.getMessage()); 014 } 015 016}