summaryrefslogtreecommitdiff
path: root/src/StardewModdingAPI/Framework/Exceptions/SParseException.cs
diff options
context:
space:
mode:
authorJesse Plamondon-Willard <github@jplamondonw.com>2017-06-18 22:11:48 -0400
committerJesse Plamondon-Willard <github@jplamondonw.com>2017-06-18 22:11:48 -0400
commitfb8fefea00aacd603e68fbdbaecd27e4c451cc82 (patch)
treec150ba4a34c596c44ccaba54931b2f85c817ab28 /src/StardewModdingAPI/Framework/Exceptions/SParseException.cs
parentb46776a4fbabe765b81751f8c4984cdd8a207419 (diff)
downloadSMAPI-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.cs17
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) { }
+ }
+}