2019-03-29 21:12:30 +01:00
|
|
|
---
|
|
|
|
title: secureValueError
|
|
|
|
description: Secure value error
|
|
|
|
image: https://docs.madelineproto.xyz/favicons/android-chrome-256x256.png
|
|
|
|
---
|
|
|
|
# Constructor: secureValueError
|
|
|
|
[Back to constructors index](index.md)
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Secure value error
|
|
|
|
|
|
|
|
### Attributes:
|
|
|
|
|
|
|
|
| Name | Type | Required | Description |
|
|
|
|
|----------|---------------|----------|-------------|
|
2019-12-27 17:48:04 +01:00
|
|
|
|type|[SecureValueType](../types/SecureValueType.md) | Yes|Type of element which has the issue|
|
2019-03-29 21:12:30 +01:00
|
|
|
|hash|[bytes](../types/bytes.md) | Yes|Hash|
|
2019-12-27 17:48:04 +01:00
|
|
|
|text|[string](../types/string.md) | Yes|Error message|
|
2019-03-29 21:12:30 +01:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
### Type: [SecureValueError](../types/SecureValueError.md)
|
|
|
|
|
|
|
|
|
|
|
|
### Example:
|
|
|
|
|
|
|
|
```php
|
|
|
|
$secureValueError = ['_' => 'secureValueError', 'type' => SecureValueType, 'hash' => 'bytes', 'text' => 'string'];
|
|
|
|
```
|
|
|
|
|
|
|
|
|
|
|
|
Or, if you're into Lua:
|
|
|
|
|
|
|
|
```lua
|
|
|
|
secureValueError={_='secureValueError', type=SecureValueType, hash='bytes', text='string'}
|
|
|
|
|
|
|
|
```
|
|
|
|
|
|
|
|
|