using System; namespace StardewModdingAPI.ModBuildConfig.Framework { /// A user error whose message can be displayed to the user. internal class UserErrorException : Exception { /********* ** Public methods *********/ /// Construct an instance. /// The error message. public UserErrorException(string message) : base(message) { } } }