summaryrefslogtreecommitdiffstats
path: root/dcaedt_catalog/asdc/src/main/java/org/onap/sdc/dcae/catalog/asdc/ASDCException.java
blob: 659653d4477f31b8e9790fb3184cfc57a10b4c2f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package org.onap.sdc.dcae.catalog.asdc;

import org.onap.sdc.dcae.errormng.BaseException;
import org.onap.sdc.dcae.errormng.RequestError;
import org.springframework.http.HttpStatus;
import org.springframework.web.client.HttpClientErrorException;

public class ASDCException extends BaseException {

	ASDCException(HttpClientErrorException error) {
		super(error);
	}

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

}