2018-01-20 01:46:30 +08:00
|
|
|
<?php
|
|
|
|
|
|
|
|
namespace App\Exceptions;
|
|
|
|
|
2018-02-23 00:14:12 +08:00
|
|
|
use Symfony\Component\HttpKernel\Exception\HttpException;
|
|
|
|
|
2018-03-20 09:50:40 +08:00
|
|
|
/**
|
|
|
|
* Class SettingNotFound
|
|
|
|
* @package App\Exceptions
|
|
|
|
*/
|
2018-02-23 00:14:12 +08:00
|
|
|
class SettingNotFound extends HttpException
|
2018-01-20 01:46:30 +08:00
|
|
|
{
|
|
|
|
}
|