Throws a panic error with the specified message. Panic errors are special errors that indicate unrecoverable situations.
A Panic error
if (criticalSystemFailure) { PANIC('Critical system failure', error);} Copy
if (criticalSystemFailure) { PANIC('Critical system failure', error);}
The panic message
Optional
Optional cause of the panic
Throws a panic error with the specified message. Panic errors are special errors that indicate unrecoverable situations.
Throws
A Panic error
Example