diff options
author | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-06-18 22:11:48 -0400 |
---|---|---|
committer | Jesse Plamondon-Willard <github@jplamondonw.com> | 2017-06-18 22:11:48 -0400 |
commit | fb8fefea00aacd603e68fbdbaecd27e4c451cc82 (patch) | |
tree | c150ba4a34c596c44ccaba54931b2f85c817ab28 /src/StardewModdingAPI/Framework/Exceptions/SParseException.cs | |
parent | b46776a4fbabe765b81751f8c4984cdd8a207419 (diff) | |
download | SMAPI-fb8fefea00aacd603e68fbdbaecd27e4c451cc82.tar.gz SMAPI-fb8fefea00aacd603e68fbdbaecd27e4c451cc82.tar.bz2 SMAPI-fb8fefea00aacd603e68fbdbaecd27e4c451cc82.zip |
show friendly error when parsing a manifest version fails (#308)
Diffstat (limited to 'src/StardewModdingAPI/Framework/Exceptions/SParseException.cs')
-rw-r--r-- | src/StardewModdingAPI/Framework/Exceptions/SParseException.cs | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/src/StardewModdingAPI/Framework/Exceptions/SParseException.cs b/src/StardewModdingAPI/Framework/Exceptions/SParseException.cs new file mode 100644 index 00000000..f7133ee7 --- /dev/null +++ b/src/StardewModdingAPI/Framework/Exceptions/SParseException.cs @@ -0,0 +1,17 @@ +using System; + +namespace StardewModdingAPI.Framework.Exceptions +{ + /// <summary>A format exception which provides a user-facing error message.</summary> + internal class SParseException : FormatException + { + /********* + ** Public methods + *********/ + /// <summary>Construct an instance.</summary> + /// <param name="message">The error message.</param> + /// <param name="ex">The underlying exception, if any.</param> + public SParseException(string message, Exception ex = null) + : base(message, ex) { } + } +} |