Tagged articles
7 articles
Page 1 of 1
php Courses
php Courses
Aug 29, 2025 · Fundamentals

Mastering C++ Exception Handling: Throw, Try, and Catch Explained

Learn how C++ exception handling separates error management from normal logic using the throw, try, and catch keywords, covering best practices, stack unwinding, performance considerations, and comprehensive code examples that demonstrate throwing standard exceptions, catching specific types, and handling unknown errors.

Throwc++catch
0 likes · 8 min read
Mastering C++ Exception Handling: Throw, Try, and Catch Explained
php Courses
php Courses
Jan 7, 2025 · Backend Development

Using the throw Keyword for Exception Handling in PHP

This article explains PHP's throw keyword, covering exception fundamentals, the try‑catch mechanism, the exception class hierarchy, and provides detailed code examples demonstrating how to throw and handle both built‑in and custom exceptions for robust error management.

BackendThrowcode-example
0 likes · 5 min read
Using the throw Keyword for Exception Handling in PHP
Satori Komeiji's Programming Classroom
Satori Komeiji's Programming Classroom
Dec 2, 2024 · Fundamentals

Master Python Generators (And the Odd Feud Behind It)

This article walks through Python generators in depth—covering basic yield behavior, the __next__, send, throw, and close methods, pre‑activation states, delegation with yield from, generator expressions pitfalls, and their role in coroutine implementation—while briefly recounting a personal conflict that sparked the write‑up.

CoroutinesGeneratorsPython
0 likes · 28 min read
Master Python Generators (And the Odd Feud Behind It)
Selected Java Interview Questions
Selected Java Interview Questions
Mar 22, 2021 · Backend Development

Introduction to Java Exceptions and Best Practices

This article provides a comprehensive overview of Java's exception mechanism, covering the Throwable hierarchy, the differences between Errors, checked and unchecked Exceptions, key keywords, common interview questions, and a collection of best‑practice guidelines with illustrative code examples.

Checked ExceptionsThrowjava
0 likes · 32 min read
Introduction to Java Exceptions and Best Practices
Java Captain
Java Captain
Sep 15, 2017 · Backend Development

Understanding Java Exception Handling: Concepts, Keywords, and Best Practices

This article explains the fundamentals of Java exceptions, the use of try‑catch‑finally, throws and throw keywords, inheritance rules for exception declarations, and offers practical recommendations for designing clean, efficient, and maintainable exception handling in Java applications.

Exception HandlingThrowbest practices
0 likes · 13 min read
Understanding Java Exception Handling: Concepts, Keywords, and Best Practices