Blame view

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