Skip to content

Commit 207edd9

Browse files
committed
feat: add BaseException interface
1 parent b28f9e7 commit 207edd9

1 file changed

Lines changed: 12 additions & 0 deletions

File tree

src/Exceptions/BaseException.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
<?php
2+
3+
namespace CodeIgniter\Shield\Exceptions;
4+
5+
use Throwable;
6+
7+
/**
8+
* Base Exception Interface for Shield
9+
*/
10+
interface BaseException extends Throwable
11+
{
12+
}

0 commit comments

Comments
 (0)