export class RepositoryLoadError extends KVORMError {
  constructor(constructor: EntityConstructor, message = `Unknown Error`) {
    super(`Could not load Entity, ${constructor.name}: ${message}`);
    this.name = `RepositoryLoadError`;
  }