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