Code cleanup

This commit is contained in:
2025-08-10 19:11:29 -04:00
parent fd73e5bb94
commit f14c1b19f5
6 changed files with 141 additions and 445 deletions

View File

@@ -47,4 +47,11 @@ public:
InvalidStateException(const String &reason="InvalidStateException"):Exception(reason){;}
String toString(){return getReason();}
};
class InvalidOperationException : public Exception
{
public:
InvalidOperationException(const String &reason="InvalidOperationException"):Exception(reason){;}
String toString(){return getReason();}
};
#endif