koel/app/Exceptions/FailedToActivateLicenseException.php
2024-07-06 17:44:40 +02:00

14 lines
263 B
PHP

<?php
namespace App\Exceptions;
use Exception;
use Throwable;
class FailedToActivateLicenseException extends Exception
{
public static function fromException(Throwable $e): self
{
return new static($e->getMessage(), $e->getCode(), $e);
}
}