blob: 3f815e3e1866b50f539eacbcfc75a8763d6471b2 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
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) { }
}
}
|