aws-ssmincidents-replicationset/src/main/java/software/amazon/ssmincidents/replicationset/BaseHandlerStd.java [192:199]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
          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/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);
          })
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



