--- a/src/main/java/net/timbusproject/extractors/modules/tavernaextractor/utils/SSHManager.java
+++ b/src/main/java/net/timbusproject/extractors/modules/tavernaextractor/utils/SSHManager.java
@@ -159,7 +159,7 @@
             try {
                     sftpChannel.lstat(path.toString()); // if dir not exists an exception is thrown
             }catch (SftpException e) {
-                throw new SSHManagerException(path.toString()+" does not exists!" +e.getLocalizedMessage());
+                throw new SSHManagerException("Directory '"+path.toString()+"' does not exist on remote machine. " +e.getLocalizedMessage()+"!");
             }
     }
   }