MadelineProto/docs/TD_docs/constructors/error.md
Daniil Gentili 9d77dc0919 AMP fixes
2017-08-20 09:05:56 +00:00

889 B

title description
error Object of this type may be returned on every function call in case of the error

Constructor: error

Back to constructors index

Object of this type may be returned on every function call in case of the error

Attributes:

Name Type Required Description
code int Yes Error code, maybe changed in the future
message string Yes Error message, may be changed in the future

Type: Error

Example:

$error = ['_' => 'error', 'code' => int, 'message' => 'string'];

PWRTelegram json-encoded version:

{"_": "error", "code": int, "message": "string"}

Or, if you're into Lua:

error={_='error', code=int, message='string'}