Files
nexusphp/app/Exceptions/SeedBoxYesException.php
2024-11-22 01:37:57 +08:00

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;
}
}