/**
  * @param  $id
  * @throws GeneralException
  * @return mixed
  */
 public function findOrThrowException($id)
 {
     $category = Category::find($id);
     if (!is_null($category)) {
         return $category;
     }
     throw new GeneralException(trans('exceptions.backend.quiz.categories.not_found'));
 }