using System;
namespace StardewModdingAPI.Toolkit.Serialization
{
/// A format exception which provides a user-facing error message.
internal class SParseException : FormatException
{
/*********
** Public methods
*********/
/// Construct an instance.
/// The error message.
/// The underlying exception, if any.
public SParseException(string message, Exception ex = null)
: base(message, ex) { }
}
}