X-Git-Url: https://gerrit.o-ran-sc.org/r/gitweb?a=blobdiff_plain;f=enrichment-coordinator-service%2Fsrc%2Fmain%2Fjava%2Forg%2Foransc%2Fenrichment%2Fexceptions%2FServiceException.java;h=bce786f91e8cdb827872af99b0756c62dda0d994;hb=4cd9f067e6985a28c045dd672bd86581b8b5b1a9;hp=ffccf806c3a7d40b689da616d0303354da52205f;hpb=6ab9cd9df333ab3b5ed1ce6957dcea8f20d5c28d;p=nonrtric.git diff --git a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/exceptions/ServiceException.java b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/exceptions/ServiceException.java index ffccf806..bce786f9 100644 --- a/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/exceptions/ServiceException.java +++ b/enrichment-coordinator-service/src/main/java/org/oransc/enrichment/exceptions/ServiceException.java @@ -28,11 +28,6 @@ public class ServiceException extends Exception { @Getter private final HttpStatus httpStatus; - public ServiceException(String message) { - super(message); - this.httpStatus = null; - } - public ServiceException(String message, Exception originalException) { super(message, originalException); this.httpStatus = null;