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