class BitJWT::ProtocolError

Attributes

body[R]
status[R]

Public Class Methods

new(status, body) click to toggle source
# File lib/bitjwt/protocol_error.rb, line 5
def initialize(status, body)
  @status = status
  @body = body
end