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