This is an automated email from the ASF dual-hosted git repository.

onders pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/master by this push:
     new 287c7bd  fix exception message typo
287c7bd is described below

commit 287c7bd4665f8458adea24bd36767a6790fa3e8f
Author: önder sezgin <ond...@apache.org>
AuthorDate: Thu Sep 27 10:18:09 2018 +0300

    fix exception message typo
---
 .../main/java/org/apache/camel/component/file/remote/FtpOperations.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/FtpOperations.java
 
b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/FtpOperations.java
index b3ca32a..196dfc2 100644
--- 
a/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/FtpOperations.java
+++ 
b/components/camel-ftp/src/main/java/org/apache/camel/component/file/remote/FtpOperations.java
@@ -760,7 +760,7 @@ public class FtpOperations implements 
RemoteFileOperations<FTPFile> {
                     throw new 
GenericFileOperationFailedException(client.getReplyCode(), 
client.getReplyString(), "Cannot delete file: " + to, e);
                 }
             } else {
-                throw new GenericFileOperationFailedException("Cannot moved 
existing file from: " + name + " to: " + to + " as there already exists a file: 
" + to);
+                throw new GenericFileOperationFailedException("Cannot move 
existing file from: " + name + " to: " + to + " as there already exists a file: 
" + to);
             }
         }
 

Reply via email to