Language catalogKeywordson_errorOn this pageon_errorCatches an exception thrown inside of an 'attempt' statement. Syntax on_error Example &collection = Coll.Emptyattempt Print {Coll.Fetch &collection 2} Print "This line is skipped after the error."on_error with $message $type Print "Message: {$message}" Print "Type: {$type}"end