MadelineProtoDocs/old_docs/API_docs_v97/constructors/error.md

40 lines
625 B
Markdown
Raw Permalink Normal View History

2019-05-03 21:10:09 +02:00
---
title: error
2019-12-27 17:48:04 +01:00
description: Error.
2019-05-03 21:10:09 +02:00
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: error
[Back to constructors index](index.md)
2019-12-27 17:48:04 +01:00
Error.
2019-05-03 21:10:09 +02:00
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
2019-12-27 17:48:04 +01:00
|code|[int](../types/int.md) | Yes|Error code|
|text|[string](../types/string.md) | Yes|Message|
2019-05-03 21:10:09 +02:00
### Type: [Error](../types/Error.md)
### Example:
```php
$error = ['_' => 'error', 'code' => int, 'text' => 'string'];
```
Or, if you're into Lua:
```lua
error={_='error', code=int, text='string'}
```