This commit is contained in:
大哥大哥的大哥哥
2026-09-09 14:47:29 +08:00
parent 4d9da40abd
commit 65755c9e96
832 changed files with 412085 additions and 0 deletions
@@ -0,0 +1,21 @@
<?php
declare(strict_types=1);
namespace app\common\service\game;
final class TangDetectiveProgressException extends \DomainException
{
private string $errorCode;
public function __construct(string $errorCode, string $message)
{
parent::__construct($message);
$this->errorCode = $errorCode;
}
public function errorCode(): string
{
return $this->errorCode;
}
}