Difference between revisions of "Error"

From GiderosMobile
(removed language stuff)
Line 1: Line 1:
 
__NOTOC__
 
__NOTOC__
<languages />
+
'''Available since:''' Gideros 2011.6<br/>
'''<translate>Available since</translate>:''' Gideros 2011.6<br/>
+
'''Class:''' [[(global)]]<br/>
'''<translate>Class</translate>:''' [[Special:MyLanguage/(global)|(global)]]<br/>
 
  
=== <translate>Description</translate> ===
+
=== Description ===
<translate>Terminates the last protected function called and returns message as the error message. Function error never returns.
+
Terminates the last protected function called and returns message as the error message. Function error never returns.
 
 
Usually, error adds some information about the error position at the beginning of the message. The level argument specifies how to get the error position. With level 1 (the default), the error position is where the error function was called. Level 2 points the error to where the function that called error was called; and so on. Passing a level 0 avoids the addition of error position information to the message.</translate>
 
 
<source lang="lua">
 
<source lang="lua">
 
error(message,level)
 
error(message,level)
 
</source>
 
</source>
  
=== <translate>Parameters</translate> ===
+
Usually, error adds some information about the error position at the beginning of the ''message''. The ''level'' argument specifies how to get the error position. With level 1 (the default), the error position is where the error function was called. Level 2 points the error to where the function that called error was called; and so on. Passing a level 0 avoids the addition of error position information to the message.
'''message''': (string) <translate>error message</translate> <br/>
+
 
'''level''': (number) <translate>the call stack level</translate> '''optional'''<br/>
+
=== Parameters ===
 +
'''message''': (string) error message<br/>
 +
'''level''': (number) the call stack level '''optional'''<br/>
  
 
{{(global)}}
 
{{(global)}}

Revision as of 05:35, 3 March 2021

Available since: Gideros 2011.6
Class: (global)

Description

Terminates the last protected function called and returns message as the error message. Function error never returns.

error(message,level)
Usually, error adds some information about the error position at the beginning of the message. The level argument specifies how to get the error position. With level 1 (the default), the error position is where the error function was called. Level 2 points the error to where the function that called error was called; and so on. Passing a level 0 avoids the addition of error position information to the message.

Parameters

message: (string) error message
level: (number) the call stack level optional