public SystemException()

in src/main/java/com/epam/digital/data/platform/starter/errorhandling/exception/SystemException.java [33:40]


  public SystemException(SystemErrorDto systemErrorDto) {
    if (Objects.nonNull(systemErrorDto)) {
      this.traceId = systemErrorDto.getTraceId();
      this.code = systemErrorDto.getCode();
      this.message = systemErrorDto.getMessage();
      this.localizedMessage = systemErrorDto.getLocalizedMessage();
    }
  }