aws-sso-instanceaccesscontrolattributeconfiguration/src/main/java/software/amazon/sso/instanceaccesscontrolattributeconfiguration/ReadHandler.java [69:80]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                    if (exception instanceof ResourceNotFoundException) {
                        return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.NotFound);
                    } else if(exception instanceof AccessDeniedException){
                        return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.AccessDenied);
                    } else if (exception instanceof ValidationException) {
                        return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.InvalidRequest);
                    } else if (exception instanceof ThrottlingException) {
                        return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.Throttling);
                    } else {
                        return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.InternalFailure);
                    }
                })
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



aws-sso-permissionset/src/main/java/software/amazon/sso/permissionset/ReadHandler.java [83:94]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
                            if (exception instanceof ResourceNotFoundException) {
                                return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.NotFound);
                            } else if(exception instanceof AccessDeniedException){
                                return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.AccessDenied);
                            } else if (exception instanceof ValidationException) {
                                return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.InvalidRequest);
                            } else if (exception instanceof ThrottlingException) {
                                return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.Throttling);
                            } else {
                                return ProgressEvent.defaultFailureHandler(exception, HandlerErrorCode.InternalFailure);
                            }
                        })
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



