1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-29 12:10:22 +02:00

Fix broken build

This commit is contained in:
Kamran Ahmed
2022-10-12 02:08:38 +04:00
parent c55673c1a3
commit 4d2ccb1432
2 changed files with 0 additions and 6 deletions

View File

@@ -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.

View File

@@ -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.