blob: 4ee58433a3ea3c759d2744306c21fe68f061bedb (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#nullable disable
using System;
namespace StardewModdingAPI.Web.Framework.LogParsing
{
/// <summary>An error while parsing the log file which doesn't require a stack trace to troubleshoot.</summary>
internal class LogParseException : Exception
{
/*********
** Public methods
*********/
/// <summary>Construct an instance.</summary>
/// <param name="message">The user-friendly error message.</param>
public LogParseException(string message)
: base(message) { }
}
}
|