Reimplemented error handling for SettingsFile
This commit is contained in:
17
PluginManager/Interfaces/Exceptions/IException.cs
Normal file
17
PluginManager/Interfaces/Exceptions/IException.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System.Collections.Generic;
|
||||
|
||||
namespace PluginManager.Interfaces.Exceptions;
|
||||
|
||||
public interface IException
|
||||
{
|
||||
public List<string> Messages { get; set; }
|
||||
public bool isFatal { get; }
|
||||
public string GenerateFullMessage();
|
||||
public void HandleException();
|
||||
|
||||
public IException AppendError(string message);
|
||||
|
||||
public IException AppendError(List<string> messages);
|
||||
public IException IsFatal(bool isFatal = true);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user