export class MissingSpecKeysError extends Error {
  constructor(message: string) {
    super(message);
    this.name = 'MissingSpecKeysError';
    this.message = message;