invoiceninja/app/Exceptions/MigrationValidatorFailed.php

20 lines
358 B
PHP
Raw Normal View History

<?php
namespace App\Exceptions;
use Exception;
use Throwable;
class MigrationValidatorFailed extends Exception
{
public function __construct($message = "", $code = 0, Throwable $previous = null)
{
parent::__construct($message, $code, $previous);
}
public function report()
{
// Send, an e-mail & notify users.
}
}