class RubeePass::Error::NotSupported

Public Class Methods

new(msg = nil) click to toggle source
Calls superclass method
# 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