1   /**
2    * Defines an Exception if the Location specified is
3    * not a valid Location on the Grid
4    * 
5    * @see Grid
6    * @see Location
7    * @see MapObject
8    * @author Matt, Sam
9    * @version 1234
10   */
11  public class InvalidLocationException extends Exception 
12  {
13      /**
14       * Simple constructor for EmptyLocationException
15       * 
16       * @param s the String to pass along
17       */
18      public InvalidLocationException(String s) 
19      {
20          super(s);
21      }
22  }