Blame view

src/kernel/exception/CannotDeleteCellException.java 406 Bytes
02c44758   Remi   finish ihm
1
2
3
4
5
  package kernel.exception;
  
  public class CannotDeleteCellException extends Exception {
  	
  	public CannotDeleteCellException() {
080a0e68   Remi   change return
6
7
8
9
10
11
12
13
14
15
16
17
18
  		super();
  	}
  	
  	public CannotDeleteCellException(String message) {
  		super(message);
  	}
  	
  	public CannotDeleteCellException(Throwable throwable) {
  		super(throwable);
  	}
  	
  	public CannotDeleteCellException(String message, Throwable throwable) {
  		super(message, throwable);
02c44758   Remi   finish ihm
19
20
  	}
  }