001 package railo.commons.io.res.type.ftp; 002 003 004 import java.io.IOException; 005 006 public final class FTPException extends IOException { 007 008 public FTPException(int replyCode) { 009 super("server throwed the following code "+replyCode); 010 } 011 012 013 }