Sometimes, there are cases where you want to create your own exception. If you are creating your own exception, it's known as a custom exception or user-defined exception.
These are used to customize the exception according to a specific need, and using this, you can have your own exception and a message. In this recipe, we will see how to create and throw a custom exception in Kotlin.