refactor(storage): remove not found wire serializer (#27416)

This commit is contained in:
Kit Langton
2026-05-13 21:39:50 -04:00
committed by GitHub
parent edf7649400
commit 681594b551

View File

@@ -20,13 +20,6 @@ export class NotFoundError extends Schema.TaggedErrorClass<NotFoundError>()("Not
static isInstance(input: unknown): input is NotFoundError {
return input instanceof NotFoundError
}
toObject() {
return {
name: "NotFoundError" as const,
data: { message: this.message },
}
}
}
export type Error = AppFileSystem.Error | NotFoundError