Help Center
Help CenterFreeBASIC

Errorsub

Error handling statement to force an error to be generated

Syntax

Declare Sub Error ( errno As Long )

Parameters

NameDescription
numberThe error number to generate

Description


Error invokes the error handler specified with On Error or, in case there was none set, aborts the program, printing an error message similar to those generated by the compiler's -exx run-time error checking. It's possible to use the built-in run-time error numbers and/or other custom error numbers for number. This can be used to simulate custom error numbers.

Remarks

Usage


Error number

Differences from QB


  • Error numbers are not the same as in QB.

See also


Example


To send an error alert of error 150 (just some arbitrary error code) one would do the following:
Error 150

Reference

  • Documented in KeyPgError.html