All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.rabidgremlin.mutters.bot.ink.BadInkStoryState Maven / Gradle / Ivy

There is a newer version: 7.1.0
Show newest version
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