summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Framework/Exceptions/SAssemblyLoadFailedException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'src/StardewModdingAPI/Framework/Exceptions/SAssemblyLoadFailedException.cs')
-rw-r--r--src/StardewModdingAPI/Framework/Exceptions/SAssemblyLoadFailedException.cs16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/StardewModdingAPI/Framework/Exceptions/SAssemblyLoadFailedException.cs b/src/StardewModdingAPI/Framework/Exceptions/SAssemblyLoadFailedException.cs
deleted file mode 100644
index ec9279f1..00000000
--- a/src/StardewModdingAPI/Framework/Exceptions/SAssemblyLoadFailedException.cs
+++ /dev/null
@@ -1,16 +0,0 @@
-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) { }
- }
-}