using System; namespace StardewModdingAPI.Framework.ModLoading { /// An exception raised when an incompatible instruction is found while loading a mod assembly. internal class IncompatibleInstructionException : Exception { /********* ** Public methods *********/ /// Construct an instance. public IncompatibleInstructionException() : base("Found incompatible CIL instructions.") { } /// Construct an instance. /// A message which describes the error. public IncompatibleInstructionException(string message) : base(message) { } } }