class Osso::Error::MissingConfiguredIdentityProvider

Public Class Methods

new(domain: 'The requested domain') click to toggle source
Calls superclass method
# File lib/osso/error/account_configuration_error.rb, line 8
def initialize(domain: 'The requested domain')
  super
  @domain = domain
end

Public Instance Methods

message() click to toggle source
# File lib/osso/error/account_configuration_error.rb, line 13
def message
  "#{@domain} has no configured Identity Provider. " \
    'SAML configuartion must be finalized before a user ' \
    'for this domain can sign in with SSO.'
end