1 package cz.cuni.amis.pogamut.ut2004.server.exception;
2
3 import cz.cuni.amis.pogamut.ut2004.server.IUT2004Server;
4 import cz.cuni.amis.utils.exception.PogamutException;
5
6 /**
7 * Thrown by {@link IUT2004Server} implementors when the map change fails.
8 * @author Jimmy
9 *
10 */
11 public class MapChangeException extends PogamutException {
12
13 public MapChangeException(String message, Throwable cause) {
14 super(message, cause);
15 }
16
17 public MapChangeException(String message, Object origin) {
18 super(message, origin);
19 }
20
21 }