export class SetupError extends KVORMError {
  constructor(message: string) {
    super(message);
    this.name = `SetupError`;
  }