diff --git a/wsmaster/che-core-api-factory-bitbucket/src/main/java/org/eclipse/che/api/factory/server/bitbucket/BitbucketAuthorizingFileContentProvider.java b/wsmaster/che-core-api-factory-bitbucket/src/main/java/org/eclipse/che/api/factory/server/bitbucket/BitbucketAuthorizingFileContentProvider.java
index 66e03c8bcd..bdee138fcc 100644
--- a/wsmaster/che-core-api-factory-bitbucket/src/main/java/org/eclipse/che/api/factory/server/bitbucket/BitbucketAuthorizingFileContentProvider.java
+++ b/wsmaster/che-core-api-factory-bitbucket/src/main/java/org/eclipse/che/api/factory/server/bitbucket/BitbucketAuthorizingFileContentProvider.java
@@ -61,7 +61,7 @@ public String fetchContent(String fileURL) throws IOException, DevfileException
           requestURL.substring(requestURL.indexOf(split[6]) + split[6].length() + 1),
           token.getToken());
     } catch (UnknownScmProviderException e) {
-      return fetchContentWithoutToken(requestURL, e);
+      return fetchContentWithoutToken(requestURL);
     } catch (ScmCommunicationException e) {
       return toIOException(fileURL, e);
     } catch (ScmUnauthorizedException
diff --git a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/scm/AuthorizingFileContentProvider.java b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/scm/AuthorizingFileContentProvider.java
index 3cae693181..1bb4fbcfa1 100644
--- a/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/scm/AuthorizingFileContentProvider.java
+++ b/wsmaster/che-core-api-factory/src/main/java/org/eclipse/che/api/factory/server/scm/AuthorizingFileContentProvider.java
@@ -92,7 +92,7 @@ private String fetchContent(
         return urlFetcher.fetch(requestURL, authorization);
       }
     } catch (UnknownScmProviderException e) {
-      return fetchContentWithoutToken(requestURL, e);
+      return fetchContentWithoutToken(requestURL);
     } catch (ScmCommunicationException e) {
       return toIOException(fileURL, e);
     } catch (ScmUnauthorizedException
@@ -102,7 +102,7 @@ private String fetchContent(
     }
   }
 
-  protected String fetchContentWithoutToken(String requestURL, UnknownScmProviderException e)
+  protected String fetchContentWithoutToken(String requestURL)
       throws DevfileException, IOException {
     // we don't have any provider matching this SCM provider
     // so try without secrets being configured
@@ -123,7 +123,7 @@ protected String fetchContentWithoutToken(String requestURL, UnknownScmProviderE
         }
       }
       throw new DevfileException(
-          String.format("%s: %s", e.getMessage(), exception.getMessage()), exception);
+          "Could not reach devfile at " + "`" + exception.getMessage() + "`", exception);
     }
   }