summaryrefslogtreecommitdiffstats
path: root/dcaedt_be/src/main/java/org/onap/sdc/dcae/errormng/DcaeException.java
blob: 60b8e0eeeace28ef49a130c306cd8e9f1c0e70c3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
package org.onap.sdc.dcae.errormng;

import org.springframework.http.HttpStatus;
import org.springframework.web.client.HttpClientErrorException;

public class DcaeException extends BaseException {

//	public DcaeException(HttpClientErrorException theError) {
//		super(theError);
//	}

	public DcaeException(HttpStatus status, RequestError re){
		super(status, re);
	}
}