Error-handling Notes

Collection of software development notes related to error-handling.

Exceptions Should Be Exceptional: Error Handling Best Practices

Learn when to throw exceptions in Java and Kotlin and when to avoid them. Covers exceptions for unreliable code and unrecoverable cases, return-type-based error handling, and why business logic should never use exceptions for control flow.

javakotlin