namespace Ink.Runtime
{
///
/// Exception that represents an error when running a Story at runtime.
/// An exception being thrown of this type is typically when there's
/// a bug in your ink, rather than in the ink engine itself!
///
public class StoryException : System.Exception
{
public bool useEndLineNumber;
///
/// Constructs a default instance of a StoryException without a message.
///
public StoryException () { }
///
/// Constructs an instance of a StoryException with a message.
///
/// The error message.
public StoryException(string message) : base(message) {}
}
}