All Downloads are FREE. Search and download functionalities are using the official Maven repository.

samples.errors.custom.pec Maven / Gradle / Ivy

There is a newer version: 0.0.74
Show newest version
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