/* * Copyright (C) 2022 Klaus Reimer * See LICENSE.md for licensing information. */ export class JournalError extends Error { public constructor(message: string) { super(message); this.name = "JournalError"; Object.setPrototypeOf(this, this.constructor.prototype as Function); } }