Throws an exception
Aliases:
throw Exception('Your message here');
throw new Exception('Your message here');
panic('Your message here')
error "Your error message here"
throw new Error('Your message here');
throw Exception('Your message here')
die 'Your message here';
throw 'Your message here'
raise Exception('Your message here')
stop('Your message here')
raise 'Your message here'
panic!("Your message here")
# Bash doesn't have exceptions, but you can exit with an error message:echo "Error: Your message here" >&2; exit 1
throw Error('Your message here');