1 export class ShareCalendarSignatureVerificationError extends Error {
6 constructor(senderEmail: string, errors?: Error[]) {
7 super('Authenticity of calendar invite could not be verified');
8 this.senderEmail = senderEmail;
10 Object.setPrototypeOf(this, ShareCalendarSignatureVerificationError.prototype);