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