DCAE-D be initial commit
[sdc/dcae-d/dt-be-main.git] / dcaedt_catalog / asdc / src / main / java / org / onap / sdc / dcae / catalog / asdc / ASDCException.java
1 package org.onap.sdc.dcae.catalog.asdc;
2
3 import org.onap.sdc.dcae.errormng.BaseException;
4 import org.onap.sdc.dcae.errormng.RequestError;
5 import org.springframework.http.HttpStatus;
6 import org.springframework.web.client.HttpClientErrorException;
7
8 public class ASDCException extends BaseException {
9
10         ASDCException(HttpClientErrorException error) {
11                 super(error);
12         }
13
14         public ASDCException(HttpStatus status, RequestError re){
15                 super(status, re);
16         }
17
18 }