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

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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy