Files
nexusphp/app/Exceptions/SeedBoxYesException.php

21 lines
287 B
PHP
Raw Normal View History

2024-11-22 01:37:57 +08:00
<?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;
}
}