Exception: Bsdkrun::AuthError
- Inherits:
-
GraphQLError
- Object
- StandardError
- Error
- GraphQLError
- Bsdkrun::AuthError
- Defined in:
- lib/bsdkrun/errors.rb
Overview
The daemon rejected our token — an HTTP 401, a GraphQL error whose
extensions.code is "UNAUTHENTICATED", or a websocket that closed
before connection_ack ever arrived.
Instance Attribute Summary
Attributes inherited from GraphQLError
Instance Method Summary collapse
-
#initialize(message = "the daemon rejected this token") ⇒ AuthError
constructor
A new instance of AuthError.
Constructor Details
#initialize(message = "the daemon rejected this token") ⇒ AuthError
Returns a new instance of AuthError.
73 74 75 |
# File 'lib/bsdkrun/errors.rb', line 73 def initialize( = "the daemon rejected this token") super(, "UNAUTHENTICATED") end |