Exceptions
Everything on SkillVeris tagged Exceptions — collected across the glossary, study notes, blog, and cheat sheets.
12 resources across 2 libraries
Study Notes(11)
Faults and Exception Handling
Learn how WCF translates .NET exceptions into SOAP faults, how to design typed FaultContracts, and how to centralize fault handling with IErrorHandler.
Testing Exceptions with toThrow
Learn how to assert that a function throws an error using toThrow, including matching messages, error types, and async rejections.
Interrupts Explained
How hardware interrupts, software interrupts, and CPU exceptions divert execution to handler routines, and how the IDT ties it all together.
Checked vs Unchecked Exceptions in Java
Compare checked and unchecked exceptions in Java, including compiler enforcement, typical use cases, and common exam pitfalls.
Custom Exceptions in Java
Learn how to define and throw your own checked or unchecked exception classes in Java for clearer, domain-specific error handling.
Exceptions in Java
Understand what exceptions are in Java, how the Throwable hierarchy is organized, and why exception handling keeps programs robust.
Custom Exceptions in Python
How to define your own exception classes to represent domain-specific errors, and how to raise and chain them properly.
Exceptions in Python
What exceptions are, how Python's built-in exception hierarchy is structured, and how errors propagate through a program.
Exceptions and Error Handling
Learn how PHP represents runtime failures as throwable objects, how try/catch/finally blocks control the flow around them, and how to design a clean exception…
Custom Exceptions
Custom exception types let you model domain-specific failure conditions precisely, carrying extra context and enabling callers to catch them selectively.
Custom Exceptions in Ruby
Learn to design your own exception classes by subclassing StandardError, giving callers precise, catchable error types instead of generic RuntimeErrors or stri…