mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-08-31 01:37:28 +08:00
6 lines
154 B
TypeScript
6 lines
154 B
TypeScript
import { Schema } from "effect"
|
|
|
|
export class ClientError extends Schema.TaggedErrorClass<ClientError>()("ClientError", {
|
|
cause: Schema.Defect(),
|
|
}) {}
|