Exception: CLI::UI::Glyph::InvalidGlyphHandle

Inherits:
ArgumentError
  • Object
show all
Extended by:
T::Sig
Defined in:
lib/cli/ui/glyph.rb

Instance Method Summary collapse

Methods included from T::Sig

sig

Constructor Details

#initialize(handle) ⇒ InvalidGlyphHandle

Returns a new instance of InvalidGlyphHandle.



14
15
16
17
# File 'lib/cli/ui/glyph.rb', line 14

def initialize(handle)
  super
  @handle = handle
end

Instance Method Details

#messageObject



20
21
22
23
24
# File 'lib/cli/ui/glyph.rb', line 20

def message
  keys = Glyph.available.join(',')
  "invalid glyph handle: #{@handle} " \
    "-- must be one of CLI::UI::Glyph.available (#{keys})"
end