Package org.tmatesoft.svn.core

Examples of org.tmatesoft.svn.core.SVNErrorMessage.wrap()


        try {
            client.doRevert(paths, depth, changeLists);
        } catch (SVNException e) {
            SVNErrorMessage err = e.getErrorMessage();
            if (!depth.isRecursive() && err.getErrorCode() == SVNErrorCode.WC_NOT_LOCKED) {
                err = err.wrap("Try 'svn revert --recursive' instead?");
            }
            SVNErrorManager.error(err, SVNLogType.CLIENT);
        }
    }
   
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.