diff options
Diffstat (limited to 'different_ways_of_reporting_errors.html')
-rw-r--r-- | different_ways_of_reporting_errors.html | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/different_ways_of_reporting_errors.html b/different_ways_of_reporting_errors.html index 6130e29..b4e693b 100644 --- a/different_ways_of_reporting_errors.html +++ b/different_ways_of_reporting_errors.html @@ -5,17 +5,19 @@ <meta name="author" content="aki"> <meta name="tags" content="programming, tutorial, error handling, errors, exceptions"> <meta name="published-on" content="2022-04-28T19:00:00+02:00"> -<meta name="last-modified-on" content="2023-06-17T22:27:00+02:00"> +<meta name="last-modified-on" content="2022-06-17T22:27:00+02:00"> <link rel="icon" type="image/png" href="favicon.png"> <link rel="stylesheet" href="style.css"> <title>Different Ways of Reporting Errors</title> -<nav><p><a href="https://ignore.pl">ignore.pl</a></p></nav> +<header> +<nav><a href="https://ignore.pl">ignore.pl</a></nav> +<time>28 April 2022</time> +<h1>Different Ways of Reporting Errors</h1> +</header> <article> -<h1>Different Ways of Reporting Errors</h1> -<p class="subtitle">Published on 2022-04-28 19:00:00+02:00, last modified on 2022-06-17 22:27:00+02:00 <p>Errors are a key component of writing software - programs, libraries, scripts, you name it. We need to check for them, catch them, mitigate, log, and finally create. In this article, I want to give you an overview of various methods of that last activity - creating errors - sometimes also called raising or throwing, especially when the errors are |