/** * Custom error classes for proofery. */ export class VerificationError extends Error { constructor(message: string) { super(message); this.name = 'VerificationError'; } } export class ParseError extends SyntaxError { constructor(message: string) { super(message); this.name = 'ParseError'; } }