More datahandler stuff, removed SzOperationResult.cs and made a new SzResult.cs and changed Evaluator and DataHander to utilize it

This commit is contained in:
2026-01-29 11:30:35 -06:00
parent 5265ceb0da
commit 2e5263f302
9 changed files with 136 additions and 354 deletions

8
SzCore/SzException.cs Normal file
View File

@@ -0,0 +1,8 @@
namespace SzCore;
public class SzException : Exception
{
public SzException() {}
public SzException(string message) : base (message) {}
public SzException(string message, Exception inner) : base(message, inner) {}
}