mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 09:09:29 +01:00
6 lines
99 B
TypeScript
6 lines
99 B
TypeScript
export class NoClientError extends Error {
|
|
constructor() {
|
|
super('no client in state')
|
|
}
|
|
}
|