Rogue: Savage Rats, a retro-themed dungeon crawler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
rogue-savage-rats/src/mightypork/gamecore/util/error/CorruptDataException.java

37 lines
510 B

package mightypork.gamecore.util.error;
import java.io.IOException;
/**
* Thrown when data could not be read successfully.
*
* @author MightyPork
*/
public class CorruptDataException extends IOException {
public CorruptDataException()
{
super();
}
public CorruptDataException(String message, Throwable cause)
{
super(message, cause);
}
public CorruptDataException(String message)
{
super(message);
}
public CorruptDataException(Throwable cause)
{
super(cause);
}
}