orca/src/main/computer/runtime-client-error.ts

10 lines
203 B
TypeScript

export class RuntimeClientError extends Error {
readonly code: string
constructor(code: string, message: string) {
super(message)
this.name = 'RuntimeClientError'
this.code = code
}
}