1: | <?php declare(strict_types=1); |
2: | |
3: | namespace Salient\Core\Exception; |
4: | |
5: | use Salient\Contract\Core\Exception\Exception as ExceptionInterface; |
6: | use RuntimeException; |
7: | |
8: | /** |
9: | * @api |
10: | */ |
11: | class Exception extends RuntimeException implements ExceptionInterface |
12: | { |
13: | use ExceptionTrait; |
14: | } |
15: |