Subversion Repositories sokoban

Rev

Blame | Last modification | View Log | RSS feed

  1. package gdi1sokoban.exceptions;
  2.  
  3. /**
  4.  * LevelHistoryEntryNotFoundException class
  5.  *
  6.  * this exception is called when a undo/redo is not possible
  7.  */
  8. public class LevelHistoryEntryNotFoundException extends Exception {
  9.         private static final long serialVersionUID = 7985715344810821822L;
  10.  
  11.         public LevelHistoryEntryNotFoundException(final String errorMessage) {
  12.                 super(errorMessage);
  13.         }
  14.  
  15.  
  16. }
  17.