using System; namespace StardewModdingAPI.Framework.Exceptions { /// An exception thrown when an assembly can't be loaded by SMAPI, with all the relevant details in the message. internal class SAssemblyLoadFailedException : Exception { /********* ** Public methods *********/ /// Construct an instance. /// The error message. public SAssemblyLoadFailedException(string message) : base(message) { } } }