Exception: Saml::Errors::InvalidStore

Inherits:
SamlError
  • Object
show all
Defined in:
lib/saml.rb

Instance Method Summary collapse

Constructor Details

#initialize(store = '') ⇒ InvalidStore

Returns a new instance of InvalidStore.



40
41
42
# File 'lib/saml.rb', line 40

def initialize(store = '')
  @store = store
end

Instance Method Details

#messageObject



44
45
46
47
48
49
50
# File 'lib/saml.rb', line 44

def message
  if @store.nil? || @store == ''
    'Store cannot be blank'
  else
    "Store #{@store} not registered"
  end
end