mirror of
https://github.com/lkddi/nexusphp.git
synced 2026-04-03 14:10:57 +08:00
21 lines
287 B
PHP
21 lines
287 B
PHP
<?php
|
|
|
|
namespace App\Exceptions;
|
|
|
|
class SeedBoxYesException extends NexusException
|
|
{
|
|
private int $id;
|
|
|
|
public function __construct($id)
|
|
{
|
|
parent::__construct();
|
|
$this->id = $id;
|
|
}
|
|
|
|
public function getId(): int
|
|
{
|
|
return $this->id;
|
|
}
|
|
}
|
|
|