From 4d2ccb1432348bad0d0f600905f7e157e16c5ec6 Mon Sep 17 00:00:00 2001 From: Kamran Ahmed Date: Wed, 12 Oct 2022 02:08:38 +0400 Subject: [PATCH] Fix broken build --- .../103-error-types/ProgrammerError.md | 3 --- .../103-error-types/operational errors | 3 --- 2 files changed, 6 deletions(-) delete mode 100644 content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/ProgrammerError.md delete mode 100644 content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/operational errors diff --git a/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/ProgrammerError.md b/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/ProgrammerError.md deleted file mode 100644 index c2d5c1357..000000000 --- a/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/ProgrammerError.md +++ /dev/null @@ -1,3 +0,0 @@ -# Programmer Errors - -Programmer errors are bugs and should be dealt with in our code. they can always be avoided by changing some line(s) of code. Examples of such errors are; when a String is passed where an Object was expected, trying to read a property that is “undefined”, called an asynchronous function without a callback, and so on. diff --git a/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/operational errors b/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/operational errors deleted file mode 100644 index a69784a34..000000000 --- a/content/roadmaps/107-nodejs/content/103-nodejs-error-handling/103-error-types/operational errors +++ /dev/null @@ -1,3 +0,0 @@ -# Operational Errors - -Operational errors represent run-time problems experienced by correctly written programs. they are not really bugs but are problems attached to something else in our program. Examples of such errors can be a failure to connect to a database, failure to resolve hostname, request-timeout, invalid input from the user, and so on.