using System; namespace StardewModdingAPI.Web.Framework.LogParsing { /// An error while parsing the log file which doesn't require a stack trace to troubleshoot. internal class LogParseException : Exception { /********* ** Public methods *********/ /// Construct an instance. /// The user-friendly error message. public LogParseException(string message) : base(message) { } } }