summaryrefslogtreecommitdiff
path: root/src/SMAPI/Framework/Exceptions/SAssemblyLoadFailedException.cs
blob: 4e03a687b5611f12c49a6e58879df626618e15ce (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.Framework.Exceptions
{
    /// <summary>An exception thrown when an assembly can't be loaded by SMAPI, with all the relevant details in the message.</summary>
    internal class SAssemblyLoadFailedException : Exception
    {
        /*********
        ** Public methods
        *********/
        /// <summary>Construct an instance.</summary>
        /// <param name="message">The error message.</param>
        public SAssemblyLoadFailedException(string message)
            : base(message) { }
    }
}