tryError Documentation
Function: createError()
Function
```ts function createError<T>(options): TryError<T>; ``` Defined in: [errors.ts:437](https://github.com/oconnorjohnson/try-error/blob/e3ae0308069a4fba073f4543d527ad76373db795/src/errors.ts#L437) Create a TryError with automatic source location detection
tryError API Documentation v0.0.1-alpha.1
tryError API Documentation / createError
Function: createError()
function createError<T>(options): TryError<T>;
Defined in: errors.ts:437
Create a TryError with automatic source location detection
Type Parameters
T
T
extends string
= string
Parameters
options
Error creation options
Returns
TryError
<T
>
A properly formatted TryError
Example
const error = createError({
type: "ValidationError",
message: "Invalid email format",
context: { email: "invalid-email" },
});