Blame view

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