| InvalidFileFormatException.java |
1 /**
2 * Defines an Exception if the mml/pml file is improperly formatted.
3 *
4 * @see Grid
5 * @see MapLoader
6 * @see PlayerLoader
7 * @see PlayerSaver
8 * @author Matt, Sam
9 * @version 1234
10 */
11 public class InvalidFileFormatException extends Exception
12 {
13 /**
14 * Simple constructor for InvalidFileFormatException
15 *
16 * @param s the String to pass along
17 */
18 public InvalidFileFormatException(String s)
19 {
20 super(s);
21 }
22 }