mirror of
https://github.com/koel/koel
synced 2024-11-24 21:23:06 +00:00
15 lines
263 B
PHP
15 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);
|
||
|
}
|
||
|
}
|