Package org.globus.ftp.exception

Examples of org.globus.ftp.exception.ClientException


            if (line.startsWith("total"))
                continue;
            try {
                fileInfo = new FileInfo(line);
            } catch (FTPException e) {
                ClientException ce =
                        new ClientException(
                                ClientException.UNSPECIFIED,
                                "Could not create FileInfo");
                ce.setRootCause(e);
                throw ce;
            }
            fileList.addElement(fileInfo);
        }
        return fileList;
View Full Code Here

TOP

Related Classes of org.globus.ftp.exception.ClientException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.