Blame view

src/kernel/exception/CannotDeleteCellException.java 195 Bytes
02c44758   Remi   finish ihm
1
2
3
4
5
6
7
8
  package kernel.exception;
  
  public class CannotDeleteCellException extends Exception {
  	
  	public CannotDeleteCellException() {
  		super("Cette cellule est utilisée dans une autre cellule.");
  	}
  }