WMA link
Throw[`value`]
Catch
Catch[`value`, `tag`]
Using Throw can affect the structure of what is returned by a function:
NestList[#^2 + 1 &, 1, 7]
Catch[NestList[If[# > 1000, Throw[#], #^2 + 1] &, 1, 7]]
Throw[1]