Sha256: 8430fe629ad744a2973a8181a41e50df4664fa820c9b4fbe0282e9403d6a4492

Contents?: true

Size: 1.4 KB

Versions: 11

Compression:

Stored size: 1.4 KB

Contents

module Stytch
  class JWTInvalidIssuerError < StandardError
    def initialize(msg = 'JWT issuer did not match')
      super
    end
  end

  class JWTInvalidAudienceError < StandardError
    def initialize(msg = 'JWT audience did not match')
      super
    end
  end

  class JWTExpiredSignatureError < StandardError
    def initialize(msg = 'JWT signature has expired')
      super
    end
  end

  class JWTIncorrectAlgorithmError < StandardError
    def initialize(msg = 'JWT algorithm is incorrect')
      super
    end
  end

  class JWTExpiredError < StandardError
    def initialize(msg = 'JWT has expired')
      super
    end
  end

  class TokenMissingScopeError < StandardError
    def initialize(scope)
      msg = "Missing required scope #{scope}"
      super(msg)
    end
  end

  class TenancyError < StandardError
    def initialize(subject_org_id, request_org_id)
      msg = "Subject organization_id #{subject_org_id} does not match authZ request organization_id #{request_org_id}"
      super(msg)
    end
  end

  class PermissionError < StandardError
    def initialize(request)
      msg = "Permission denied for request #{request}"
      super(msg)
    end
  end

  class M2MPermissionError < StandardError
    def initialize(has_scopes, required_scopes)
      msg = "Missing at least one required scope from #{required_scopes} for M2M request with scopes #{has_scopes}"
      super(msg)
    end
  end
end

Version data entries

11 entries across 11 versions & 1 rubygems

Version Path
stytch-9.11.0 lib/stytch/errors.rb
stytch-9.10.0 lib/stytch/errors.rb
stytch-9.9.0 lib/stytch/errors.rb
stytch-9.8.0 lib/stytch/errors.rb
stytch-9.7.0 lib/stytch/errors.rb
stytch-9.6.0 lib/stytch/errors.rb
stytch-9.5.0 lib/stytch/errors.rb
stytch-9.4.0 lib/stytch/errors.rb
stytch-9.3.0 lib/stytch/errors.rb
stytch-9.2.0 lib/stytch/errors.rb
stytch-9.1.0 lib/stytch/errors.rb