protected function _notFound($id, Subject $subject)
{
$subject->set(['success' => false]);
$this->_trigger('recordNotFound', $subject);
$message = $this->message('recordNotFound', compact('id'));
$exceptionClass = $message['class'];
throw new $exceptionClass($message['text'], $message['code']);
}