mirror of
https://github.com/invoiceninja/invoiceninja.git
synced 2024-11-06 11:12:43 +01:00
280271718b
- Refactored exceptions - Changed failed.blade.php - Removed report() method from exceptions - Added new force flag for MigrationController.php
12 lines
128 B
PHP
12 lines
128 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
use Exception;
|
|
use Throwable;
|
|
|
|
class NonExistingMigrationFile extends Exception
|
|
{
|
|
// ..
|
|
}
|