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:
8
SzCore/SzException.cs
Normal file
8
SzCore/SzException.cs
Normal 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) {}
|
||||
}
|
||||
Reference in New Issue
Block a user