diff options
| author | nsfisis <nsfisis@gmail.com> | 2026-05-18 01:55:36 +0900 |
|---|---|---|
| committer | nsfisis <nsfisis@gmail.com> | 2026-05-18 01:55:36 +0900 |
| commit | 48839250146b217e2756ed3c0e624fd341b54d6c (patch) | |
| tree | 3e9a36fd0c4deaaad22cb946029574104e0a274f /crates/shirabe/src/plugin/plugin_blocked_exception.rs | |
| parent | 6b0296e195942c0c6e48f013e8af28170507d486 (diff) | |
| download | php-shirabe-48839250146b217e2756ed3c0e624fd341b54d6c.tar.gz php-shirabe-48839250146b217e2756ed3c0e624fd341b54d6c.tar.zst php-shirabe-48839250146b217e2756ed3c0e624fd341b54d6c.zip | |
fix(compile): extract static methods from BasePackage trait
Diffstat (limited to 'crates/shirabe/src/plugin/plugin_blocked_exception.rs')
| -rw-r--r-- | crates/shirabe/src/plugin/plugin_blocked_exception.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/crates/shirabe/src/plugin/plugin_blocked_exception.rs b/crates/shirabe/src/plugin/plugin_blocked_exception.rs index b554b13..cf3c7ce 100644 --- a/crates/shirabe/src/plugin/plugin_blocked_exception.rs +++ b/crates/shirabe/src/plugin/plugin_blocked_exception.rs @@ -3,6 +3,7 @@ use shirabe_php_shim::UnexpectedValueException; // TODO(plugin): PluginBlockedException is a part of Plugin API. +#[derive(Debug)] pub struct PluginBlockedException(pub UnexpectedValueException); impl std::fmt::Display for PluginBlockedException { |
