View Javadoc

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