MadelineProtoDocs/docs/API_docs/constructors/error.md
Daniil Gentili f73c175203 Update docs
2018-12-26 01:56:50 +00:00

46 lines
731 B
Markdown

---
title: error
description: Error
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
---
# Constructor: error
[Back to constructors index](index.md)
Error
### Attributes:
| Name | Type | Required | Description |
|----------|---------------|----------|-------------|
|code|[int](../types/int.md) | Yes|Code|
|text|[string](../types/string.md) | Yes|Text|
### Type: [Error](../types/Error.md)
### Example:
```php
$error = ['_' => 'error', 'code' => int, 'text' => 'string'];
```
[PWRTelegram](https://pwrtelegram.xyz) json-encoded version:
```
{"_": "error", "code": int, "text": "string"}
```
Or, if you're into Lua:
```lua
error={_='error', code=int, text='string'}
```