Cleanup - unused files / unused exports / duplicate exports
[ProtonMail-WebClient.git] / packages / shared / lib / calendar / sharing / shareProton / ShareCalendarSignatureVerificationError.ts
blob4d793f9aea2cb2e6b0deb8e1c76c9ade4197bf0d
1 export class ShareCalendarSignatureVerificationError extends Error {
2     senderEmail: string;
4     errors?: Error[];
6     constructor(senderEmail: string, errors?: Error[]) {
7         super('Authenticity of calendar invite could not be verified');
8         this.senderEmail = senderEmail;
9         this.errors = errors;
10         Object.setPrototypeOf(this, ShareCalendarSignatureVerificationError.prototype);
11     }