aws-ssmincidents-replicationset/src/main/java/software/amazon/ssmincidents/replicationset/DeleteHandler.java [70:77]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
            if (exception instanceof ResourceNotFoundException) {
              return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.NotFound);
            }
            if (exception instanceof ValidationException) {
              return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.InvalidRequest);
            }
            return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.GeneralServiceException);
          })
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-ssmincidents-replicationset/src/main/java/software/amazon/ssmincidents/replicationset/UpdateHandler.java [78:85]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
              if (exception instanceof ResourceNotFoundException) {
                return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.NotFound);
              }
              if (exception instanceof ValidationException) {
                return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.InvalidRequest);
              }
              return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.GeneralServiceException);
            })
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



