Exception: GitHub::SQL::BadBind

Inherits:
Error
  • Object
show all
Defined in:
lib/github/sql/errors.rb

Overview

Public: Raised when a bound “:keyword” value isn’t available.

Instance Method Summary collapse

Constructor Details

#initialize(keyword) ⇒ BadBind

Returns a new instance of BadBind.



9
10
11
# File 'lib/github/sql/errors.rb', line 9

def initialize(keyword)
  super "There's no bind value for #{keyword.inspect}"
end