samples.errors.custom.pec Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of WebSite Show documentation
Show all versions of WebSite Show documentation
Prompto Documentation Web Site POM
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 - 2024 Weber Informatics LLC | Privacy Policy