Salome HOME
- Fix unit test
[modules/gde.git] / projects / GDE_App / GDE-war / test / restapi / exceptions / RestResponseException.java
1 package restapi.exceptions;
2
3 /**
4  *
5  * @author mordicus
6  */
7 public class RestResponseException extends RuntimeException {
8
9     public RestResponseException(Throwable cause) {
10         super(cause);
11     }
12
13     public RestResponseException(String message, Throwable cause) {
14         super(message, cause);
15     }
16
17     public RestResponseException(String message) {
18         super(message);
19     }
20
21     public RestResponseException() {
22     }
23     
24 }