mirror of
https://github.com/Kilo-Org/kilocode.git
synced 2026-08-31 10:03:43 +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(),
|
|
}) {}
|