diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-08-21 14:22:19 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-08-21 14:22:19 -0400 |
commit | 80fe706f19d95ef2d00887344bcbc2a064a04541 (patch) | |
tree | e80dc30e52b2680391aaff9ee65c02ede2f5ee64 /src/StardewModdingAPI/Framework/Exceptions | |
parent | 723ddc255e1c2b399dfb734306fd00912a741e62 (diff) | |
download | SMAPI-80fe706f19d95ef2d00887344bcbc2a064a04541.tar.gz SMAPI-80fe706f19d95ef2d00887344bcbc2a064a04541.tar.bz2 SMAPI-80fe706f19d95ef2d00887344bcbc2a064a04541.zip |
show friendlier error when players have two copies of a mod
Diffstat (limited to 'src/StardewModdingAPI/Framework/Exceptions')
-rw-r--r-- | src/StardewModdingAPI/Framework/Exceptions/SAssemblyLoadFailedException.cs | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/StardewModdingAPI/Framework/Exceptions/SAssemblyLoadFailedException.cs b/src/StardewModdingAPI/Framework/Exceptions/SAssemblyLoadFailedException.cs new file mode 100644 index 00000000..ec9279f1 --- /dev/null +++ b/src/StardewModdingAPI/Framework/Exceptions/SAssemblyLoadFailedException.cs @@ -0,0 +1,16 @@ +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) { } + } +} |