C# Class Ink.Runtime.StoryException

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!
Inheritance: System.Exception
Mostra file Open project: inkle/ink

Public Methods

Method Description
StoryException ( )

Constructs a default instance of a StoryException without a message.

StoryException ( string message )

Constructs an instance of a StoryException with a message.

Method Details

StoryException() public method

Constructs a default instance of a StoryException without a message.
public StoryException ( )

StoryException() public method

Constructs an instance of a StoryException with a message.
public StoryException ( string message )
message string The error message.