Learn English – error out — what exactly does this phrasal verb mean

meaningterminology

Source: You Don't Know JS: this & Object Prototypes by Kyle Simpson (2014)

Example:

Now we have an infinite circular duplication problem because of the circular reference. Should we detect a circular reference and just break the circular traversal (leaving the deep element not fully duplicated)? Should we error out completely? Something in between?

What exactly would you say the phrasal verb error out means? Please, give a bunch of examples.

Best Answer

Error out is programming jargon/slang that is synonymous with "bail out" -- exit the process entirely without attempting to recover to some degree.

The noun error is being used as a verb, a kind of shorthand for "raise an error".

Related Topic