diff --git a/blog/content/old-posts/better-exception-messages.md b/blog/content/old-posts/better-exception-messages.md
index e4e74eb0..d2451765 100644
--- a/blog/content/old-posts/better-exception-messages.md
+++ b/blog/content/old-posts/better-exception-messages.md
@@ -15,6 +15,8 @@ As always, the complete source code is on [Github]. Please file [issues] for any
[gitter chat]: https://gitter.im/phil-opp/blog_os
[comment section]: #disqus_thread
+> **Note**: This post describes how to handle exceptions using naked functions (see “Handling Exceptions with Naked Functions” for an overview). Our new way of handling exceptions can be found in the “Handling Exceptions” post.
+
## Exceptions in Detail
An exception signals that something is wrong with the currently-executed instruction. Whenever an exception occurs, the CPU interrupts its current work and starts an internal exception routine.
diff --git a/blog/content/old-posts/catching-exceptions.md b/blog/content/old-posts/catching-exceptions.md
index be1c26fc..475fa03a 100644
--- a/blog/content/old-posts/catching-exceptions.md
+++ b/blog/content/old-posts/catching-exceptions.md
@@ -13,6 +13,8 @@ As always, the complete source code is on [Github]. Please file [issues] for any
[Github]: https://github.com/phil-opp/blog_os/tree/catching_exceptions
[issues]: https://github.com/phil-opp/blog_os/issues
+> **Note**: This post describes how to handle exceptions using naked functions (see “Handling Exceptions with Naked Functions” for an overview). Our new way of handling exceptions can be found in the “Handling Exceptions” post.
+
## Exceptions
An exception signals that something is wrong with the current instruction. For example, the CPU issues an exception if the current instruction tries to divide by 0. When an exception occurs, the CPU interrupts its current work and immediately calls a specific exception handler function, depending on the exception type.
diff --git a/blog/content/old-posts/returning-from-exceptions.md b/blog/content/old-posts/returning-from-exceptions.md
index e5b98a3f..bf0b568f 100644
--- a/blog/content/old-posts/returning-from-exceptions.md
+++ b/blog/content/old-posts/returning-from-exceptions.md
@@ -15,6 +15,8 @@ As always, the complete source code is on [Github]. Please file [issues] for any
[gitter chat]: https://gitter.im/phil-opp/blog_os
[comment section]: #disqus_thread
+> **Note**: This post describes how to handle exceptions using naked functions (see “Handling Exceptions with Naked Functions” for an overview). Our new way of handling exceptions can be found in the “Handling Exceptions” post.
+
## Introduction
Most exceptions are fatal and can't be resolved. For example, we can't return from a divide-by-zero exception in a reasonable way. However, there are some exceptions that we can resolve: