class KBSecret::Exceptions::GeneratorFormatError
Raised during generator creation if an unknown generator format is requested.
Public Class Methods
new(fmt)
click to toggle source
@param fmt [String, Symbol] the format of the generator
Calls superclass method
# File lib/kbsecret/exceptions.rb, line 80 def initialize(fmt) super "Unknown generator format: '#{fmt}'" end