Glossary

`try..except`

Pascal's exception-handling construct. Code in the `try` block is monitored for exceptions. If an exception occurs, execution jumps to the `except` block, where `on` clauses handle specific exception types. (Ch. 19)

Learn More

Related Terms