/* * Copyright 2018 Dialog LLC */ class EntityNotFoundError extends Error { readonly name = 'EntityNotFound'; readonly id: ID; constructor(id: ID) { super(`Entity ${id} unexpectedly not found`); this.id = id; } } export default EntityNotFoundError;