export class RequiredJsonPropertyError extends Error { public constructor(object: any, propertyName: string) { super('Object ' + object + ' expected to have ' + propertyName + '.'); } }