> For AI agents: the complete documentation index is available at /byethrow/ja/llms.txt, the full documentation bundle is available at /byethrow/ja/llms-full.txt.

# Type Alias: Failure\<E>

> **Failure**\<`E`> = `object`

Represents a failed result.

## Example

```ts
import { Result } from '@praha/byethrow';

const failure: Result.Failure<string> = {
  type: 'Failure',
  error: 'Something went wrong',
};
```

## Type Parameters

### E

`E`

The type of the error.

## Properties

### error

> `readonly` **error**: `E`

***

### type

> `readonly` **type**: `"Failure"`
