com.github.brunothg.game.engine.exception.ParseException Maven / Gradle / Ivy
package com.github.brunothg.game.engine.exception;
import java.io.IOException;
public class ParseException extends IOException
{
private static final long serialVersionUID = 1L;
public ParseException()
{
super();
}
public ParseException(String message, Throwable cause)
{
super(message, cause);
}
public ParseException(String message)
{
super(message);
}
public ParseException(Throwable cause)
{
super(cause);
}
}