class KBSecret::Exceptions::SessionLoadError

Raised during session load if an error occurs.

Public Class Methods

new(msg) click to toggle source

@param msg [String] the error message

Calls superclass method
# File lib/kbsecret/exceptions.rb, line 48
def initialize(msg)
  super "Session loading failure: #{msg}"
end