Sha256: a9cd01b44c9b5d367aafc318ffae6d231144addd1c74f9559eb4565178fc6bb3

Contents?: true

Size: 1.31 KB

Versions: 173

Compression:

Stored size: 1.31 KB

Contents

# OryClient::GenericError

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **code** | **Integer** | The status code | [optional] |
| **debug** | **String** | Debug information  This field is often not exposed to protect against leaking sensitive information. | [optional] |
| **details** | **Object** | Further error details | [optional] |
| **error** | [**GenericErrorContent**](GenericErrorContent.md) |  | [optional] |
| **id** | **String** | The error ID  Useful when trying to identify various errors in application logic. | [optional] |
| **message** | **String** | Error message  The error's message. |  |
| **reason** | **String** | A human-readable reason for the error | [optional] |
| **request** | **String** | The request ID  The request ID is often exposed internally in order to trace errors across service architectures. This is often a UUID. | [optional] |
| **status** | **String** | The status description | [optional] |

## Example

```ruby
require 'ory-client'

instance = OryClient::GenericError.new(
  code: 404,
  debug: SQL field "foo" is not a bool.,
  details: null,
  error: null,
  id: null,
  message: The resource could not be found,
  reason: User with ID 1234 does not exist.,
  request: d7ef54b1-ec15-46e6-bccb-524b82c035e6,
  status: Not Found
)
```

Version data entries

173 entries across 173 versions & 1 rubygems

Version Path
ory-client-1.16.2 docs/GenericError.md
ory-client-1.16.1 docs/GenericError.md
ory-client-1.16.0 docs/GenericError.md
ory-client-1.15.17 docs/GenericError.md
ory-client-1.15.16 docs/GenericError.md
ory-client-1.15.15 docs/GenericError.md
ory-client-1.15.14 docs/GenericError.md
ory-client-1.15.13 docs/GenericError.md
ory-client-1.15.12 docs/GenericError.md
ory-client-1.15.10 docs/GenericError.md
ory-client-1.15.7 docs/GenericError.md
ory-client-1.15.6 docs/GenericError.md
ory-client-1.15.5 docs/GenericError.md
ory-client-1.15.4 docs/GenericError.md
ory-client-1.15.3 docs/GenericError.md
ory-client-1.15.0 docs/GenericError.md
ory-client-1.14.5 docs/GenericError.md
ory-client-1.14.4 docs/GenericError.md
ory-client-1.14.3 docs/GenericError.md
ory-client-1.14.2 docs/GenericError.md