Blame view

src/kernel/exception/CreateCycleException.java 381 Bytes
5731029f   Remi   merge
1
2
3
  package kernel.exception;
  
  public class CreateCycleException extends Exception {
080a0e68   Remi   change return
4
  	
882d59f8   mandjemb   Rapport
5
  	public CreateCycleException() {
080a0e68   Remi   change return
6
7
8
9
10
11
12
13
14
15
16
17
18
  		super();
  	}
  	
  	public CreateCycleException(String message) {
  		super(message);
  	}
  	
  	public CreateCycleException(Throwable throwable) {
  		super(throwable);
  	}
  	
  	public CreateCycleException(String message, Throwable throwable) {
  		super(message, throwable);
882d59f8   mandjemb   Rapport
19
  	}
5731029f   Remi   merge
20
  }