Implement continue on connect + nda

Signed-off-by: Émile Ré <emile@getprobo.com>
This commit is contained in:
Émile Ré
2026-02-20 13:57:52 +04:00
parent 316e81f938
commit c79c62fc78
6 changed files with 106 additions and 58 deletions

View File

@@ -6,6 +6,14 @@ export class UnAuthenticatedError extends Error {
}
}
export class NDASignatureRequiredError extends Error {
constructor(message?: string) {
super(message || "NDA_SIGNATURE_REQUIRED");
this.name = "NDASignatureRequiredError";
Object.setPrototypeOf(this, NDASignatureRequiredError.prototype);
}
}
export class InternalServerError extends Error {
constructor() {
super("INTERNAL_SERVER_ERROR");