Exception: KBSecret::RecordTypeUnknownError

Inherits:
KBSecretError
  • Object
show all
Defined in:
lib/kbsecret/exceptions.rb

Overview

Raised during record creation if an unknown record type is requested.

Instance Method Summary collapse

Constructor Details

#initialize(type) ⇒ RecordTypeUnknownError

Returns a new instance of RecordTypeUnknownError.



10
11
12
# File 'lib/kbsecret/exceptions.rb', line 10

def initialize(type)
  super "Unknown record type: #{type}"
end