summaryrefslogtreecommitdiff
path: root/src/SMAPI.ModBuildConfig/Framework/UserErrorException.cs
blob: 588118efc051a72fe295b64a8bf3bac629e7bc0b (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.ModBuildConfig.Framework
{
    /// <summary>A user error whose message can be displayed to the user.</summary>
    internal class UserErrorException : Exception
    {
        /*********
        ** Public methods
        *********/
        /// <summary>Construct an instance.</summary>
        /// <param name="message">The error message.</param>
        public UserErrorException(string message)
            : base(message) { }
    }
}