NONRTRIC - Enrichment Coordinator Service, Changed error codes
[nonrtric.git] / enrichment-coordinator-service / src / main / java / org / oransc / enrichment / exceptions / ServiceException.java
index ffccf80..bce786f 100644 (file)
@@ -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;