
samples.errors.custom.pec Maven / Gradle / Ivy
define BadContentError as enumerated Error with symbols:
MISSING_PRODUCT with "Expecting 'product' in file!" as text
MISSING_PRICE with "Could not find 'price' for product!" as text
define checkContent as method receiving Text text doing:
if "product" not in text:
raise MISSING_PRODUCT
define main as method doing:
switch on error doing:
checkContent "some invalid content"
when any:
printLine error.text
© 2015 - 2025 Weber Informatics LLC | Privacy Policy