mirror of
https://github.com/anomalyco/opencode.git
synced 2026-07-10 03:48:28 +00:00
5 lines
154 B
TypeScript
5 lines
154 B
TypeScript
import { Schema } from "effect"
|
|
|
|
export class ClientError extends Schema.TaggedErrorClass<ClientError>()("ClientError", {
|
|
cause: Schema.Defect(),
|
|
}) {}
|