com.rabidgremlin.mutters.bot.ink.BadInkStoryState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mutters-ink-bot Show documentation
Show all versions of mutters-ink-bot Show documentation
A framework for building bots.
package com.rabidgremlin.mutters.bot.ink;
/**
* This run time exception is thrown if there is an issue loading an Ink story state from a Session.
*
* @author rabidgremlin
*
*/
public class BadInkStoryState
extends RuntimeException
{
public BadInkStoryState()
{
}
public BadInkStoryState(String message)
{
super(message);
}
public BadInkStoryState(Throwable cause)
{
super(cause);
}
public BadInkStoryState(String message, Throwable cause)
{
super(message, cause);
}
public BadInkStoryState(String message, Throwable cause, boolean enableSuppression, boolean writableStackTrace)
{
super(message, cause, enableSuppression, writableStackTrace);
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy