Inheritance: extends Exception
 /**
  * @param string $id
  * @return mixed
  * @throws NotFoundException
  */
 public function get($id)
 {
     throw NotFoundException::serviceNotFound($id);
 }