Checked exceptions

Checked exceptions are enforced by the 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.

Checked exceptions can be raised and handled.

Last updated