Skip to content

Commit

Permalink
Add ErrFederationCertificateNotFound error (#9)
Browse files Browse the repository at this point in the history
  • Loading branch information
Icerzack authored Jul 31, 2024
1 parent 7380a41 commit 1e47155
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions iamerrors/iamerrors.go
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@ var (
ErrFederationIssuerRequired = errors.New("FEDERATION_ISSUER_REQUIRED")
ErrFederationSSOURLRequired = errors.New("FEDERATION_SSO_URL_REQUIRED")
ErrFederationCertificateIDRequired = errors.New("FEDERATION_CERTIFICATE_ID_REQUIRED")
ErrFederationCertificateNotFound = errors.New("FEDERATION_CERTIFICATE_NOT_FOUND")
ErrFederationMaxAgeHoursRequired = errors.New("FEDERATION_MAX_AGE_HOURS_REQUIRED")
ErrFederationNotFound = errors.New("FEDERATION_NOT_FOUND")

Expand Down Expand Up @@ -82,6 +83,7 @@ var (
ErrFederationIssuerRequired.Error(): ErrFederationIssuerRequired,
ErrFederationSSOURLRequired.Error(): ErrFederationSSOURLRequired,
ErrFederationCertificateIDRequired.Error(): ErrFederationCertificateIDRequired,
ErrFederationCertificateNotFound.Error(): ErrFederationCertificateNotFound,
ErrFederationNotFound.Error(): ErrFederationNotFound,
ErrFederationMaxAgeHoursRequired.Error(): ErrFederationMaxAgeHoursRequired,
ErrUserOrGroupNotFound.Error(): ErrUserOrGroupNotFound,
Expand Down

0 comments on commit 1e47155

Please sign in to comment.