aboutsummaryrefslogtreecommitdiffhomepage
path: root/api/Users/Exceptions/UserNotFoundException.php
blob: 13fb40e6c9c2e63b346ea95f225316c49d5a9ba7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
<?php

namespace Api\Users\Exceptions;

use Symfony\Component\HttpKernel\Exception\NotFoundHttpException;

class UserNotFoundException extends NotFoundHttpException
{
    public function __construct()
    {
        parent::__construct('The user was not found.');
    }
}