class Locked::RequestError

Raised when anything is wrong with the request (any unhappy path) This error indicates that either we would wait too long for a response or something else happened somewhere in the middle and we weren't able to get the results

Attributes

reason[R]

Public Class Methods

new(reason) click to toggle source

@param reason [Exception] the core exception that causes this error

# File lib/locked/errors.rb, line 13
def initialize(reason)
  @reason = reason
end