class KBSecret::Exceptions::SessionImportError

Raised during record import if the source is the same as the destination.

Public Class Methods

new(session) click to toggle source

@param session [Session] the session being imported into

Calls superclass method
# File lib/kbsecret/exceptions.rb, line 64
def initialize(session)
  super "Session '#{session.label}' cannot import records from itself"
end