class Flipper::GateNotFound

Raised when gate can not be found for a thing.

Public Class Methods

new(thing) click to toggle source
Calls superclass method
# File lib/flipper/errors.rb, line 7
def initialize(thing)
  super "Could not find gate for #{thing.inspect}"
end