String contraintMsg = dive.getCause().getCause().getMessage();
if(StringUtils.indexOf(contraintMsg, "sku") > 0){
resp1.addError("sku", "SKU Found");
}else if(StringUtils.indexOf(contraintMsg, "barcode") > 0){
resp1.addError("barcode", "Barcode Found");
}
return resp1;
} catch (Exception e) {
SgwtRestErrorResponse resp1 = new SgwtRestErrorResponse(-1);
resp1.addError("exeption", e.getMessage());