Add simple output handling to exception classes

This commit is contained in:
crazywhalecc
2026-02-28 13:43:28 +08:00
parent d316684995
commit 2d550a8db4
4 changed files with 24 additions and 3 deletions

View File

@@ -4,4 +4,7 @@ declare(strict_types=1);
namespace StaticPHP\Exception;
class RegistryException extends SPCException {}
class RegistryException extends SPCException
{
protected bool $simple_output = true;
}