Package com.sshtools.daemon.platform

Examples of com.sshtools.daemon.platform.UnsupportedFileOperationException


* @throws PermissionDeniedException
*/
    public SftpFile readSymbolicLink(String path)
        throws UnsupportedFileOperationException, FileNotFoundException,
            IOException, PermissionDeniedException {
        throw new UnsupportedFileOperationException(
            "Symbolic links are not supported by the Virtual File System");
    }
View Full Code Here


* @throws PermissionDeniedException
*/
    public void createSymbolicLink(String link, String target)
        throws UnsupportedFileOperationException, FileNotFoundException,
            IOException, PermissionDeniedException {
        throw new UnsupportedFileOperationException(
            "Symbolic links are not supported by the Virtual File System");
    }
View Full Code Here

* @throws PermissionDeniedException
*/
    public SftpFile readSymbolicLink(String path)
        throws UnsupportedFileOperationException, FileNotFoundException,
            IOException, PermissionDeniedException {
        throw new UnsupportedFileOperationException(
            "Symbolic links are not supported by the Virtual File System");
    }
View Full Code Here

* @throws PermissionDeniedException
*/
    public void createSymbolicLink(String link, String target)
        throws UnsupportedFileOperationException, FileNotFoundException,
            IOException, PermissionDeniedException {
        throw new UnsupportedFileOperationException(
            "Symbolic links are not supported by the Virtual File System");
    }
View Full Code Here

TOP

Related Classes of com.sshtools.daemon.platform.UnsupportedFileOperationException

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.