summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Framework/Exceptions
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-08-21 14:22:19 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-08-21 14:22:19 -0400
commit80fe706f19d95ef2d00887344bcbc2a064a04541 (patch)
treee80dc30e52b2680391aaff9ee65c02ede2f5ee64 /src/StardewModdingAPI/Framework/Exceptions
parent723ddc255e1c2b399dfb734306fd00912a741e62 (diff)
downloadSMAPI-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.cs16
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) { }
+ }
+}