28 lines
933 B
C#
28 lines
933 B
C#
using ZelWiki.Engine.Library.Interfaces;
|
|
using ZelWiki.Repository;
|
|
|
|
namespace ZelWiki.Engine.Implementation
|
|
{
|
|
/// <summary>
|
|
/// Handles exceptions thrown by the wiki engine.
|
|
/// </summary>
|
|
public class ExceptionHandler : IExceptionHandler
|
|
{
|
|
/// <summary>
|
|
/// Called when an exception is thrown by the wiki engine.
|
|
/// </summary>
|
|
/// <param name="state">Reference to the wiki state object</param>
|
|
/// <param name="ex">Optional exception, in the case that this was an actual exception.</param>
|
|
/// <param name="customText">Text that accompanies the exception.</param>
|
|
public void Log(IZelEngineState state, Exception? ex, string customText)
|
|
{
|
|
if (ex != null)
|
|
{
|
|
ExceptionRepository.InsertException(ex, customText);
|
|
}
|
|
|
|
ExceptionRepository.InsertException(customText);
|
|
}
|
|
}
|
|
}
|