invoiceninja/app/Exceptions/MigrationValidatorFailed.php

20 lines
346 B
PHP

<?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()
{
return $this->message;
}
}