Exception: RubeePass::Error::NotSupported

Inherits:
RubeePass::Error show all
Defined in:
lib/rubeepass/error/not_supported.rb

Instance Method Summary collapse

Constructor Details

#initialize(msg = nil) ⇒ NotSupported

Returns a new instance of NotSupported.



2
3
4
5
6
7
8
# File 'lib/rubeepass/error/not_supported.rb', line 2

def initialize(msg = nil)
    if (msg.nil?)
        super("Encryption scheme not currently supported")
    else
        super("Encryption scheme not currently supported: #{msg}")
    end
end