Checked Exceptions

Checked exceptions are enforced by the project compiler, and they usually represent exceptional conditions that a user can reasonably anticipate and recover from during the execution of a flow.

A checked exception is any structure that has pdk.ex.Exception as a superstructure.

new exception

Checked exceptions can be raised and handled.

Last updated