DatabaseMigrationException.php
17 lines
| 1 | <?php |
| 2 | |
| 3 | namespace Give\Framework\Migrations\Exceptions; |
| 4 | |
| 5 | use Exception; |
| 6 | use Give\Framework\Exceptions\Contracts\LoggableException; |
| 7 | use Give\Framework\Exceptions\Traits\Loggable; |
| 8 | |
| 9 | /** |
| 10 | * Class DatabaseMigrationException |
| 11 | * |
| 12 | * Represents an exception that occurred when executing a migration within the database |
| 13 | */ |
| 14 | class DatabaseMigrationException extends Exception implements LoggableException { |
| 15 | use Loggable; |
| 16 | } |
| 17 |