fixed source code links to go to repo.or.cz repository
[applet-bots.git] / src / appletbots / OutOfThisWorldException.java
blob12c910a3b932d8d89678b1fec8cc101212a0216a
1 /*
2 * Copyright (c) 2002 Erik Rasmussen - All Rights Reserverd
3 */
4 package appletbots;
6 /**
7 * This exception is thrown when an object (or part of an object) leaves the
8 * boundaries of the world.
10 * @author Erik Rasmussen
12 public class OutOfThisWorldException extends Exception
14 /**
15 * Creates a new OutOfTheWorldException with the given message
17 * @param message The error message
19 public OutOfThisWorldException(final String message)
21 super(message);
24 /**
25 * Creates a new OutOfThisWorldException
27 public OutOfThisWorldException()
29 super();