export class EntityLookupError extends MetadataError {
  constructor(constructor: EntityConstructor, message = `Unknown Error`) {
    super(`Error looking up Entity, ${constructor.name}: ${message}`);
    this.name = `EntityLookupError`;
  }