12345678910111213141516171819202122232425262728293031323334353637383940 |
- .. _func_system_runtimeerror:
- ============
- RuntimeError
- ============
- RuntimeError -
- Description
- ===========
- .. code-block:: blitzmax
- RuntimeError( message$ )
- Generate a runtime error
- Throws a TRuntimeException.
- Parameters
- ==========
- Return Values
- =============
- Nothing.
- Examples
- ========
- .. code-block:: blitzmax
- ' runtimeerror.bmx
-
- If a=0 RuntimeError "This program has failed badly."
- See Also
- ========
|