diff options
Diffstat (limited to 'src/io/io.h')
-rw-r--r-- | src/io/io.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/io/io.h b/src/io/io.h index bcc59fd..b2792dd 100644 --- a/src/io/io.h +++ b/src/io/io.h @@ -16,6 +16,11 @@ struct disconnected { static constexpr std::string_view description = "Disconnected"; static constexpr bool is_critical = true; }; + +struct resource_busy { + static constexpr std::string_view description = "Resource busy"; + static constexpr bool is_critical = false; +}; } /* * Input stream |