EmployeeNotFoundException.php 343 B

1234567891011121314151617
  1. <?php
  2. namespace App\Shop\Employees\Exceptions;
  3. use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;
  4. class EmployeeNotFoundException extends NotFoundHttpException
  5. {
  6. /**
  7. * EmployeeNotFoundException constructor.
  8. */
  9. public function __construct()
  10. {
  11. parent::__construct('Employee not found.');
  12. }
  13. }