lib/osso/error/saml_config_error.rb in osso-0.0.5.pre.epsilon vs lib/osso/error/saml_config_error.rb in osso-0.0.5.pre.eta
- old
+ new
@@ -1,9 +1,13 @@
# frozen_string_literal: true
module Osso
module Error
- class SamlConfigError < StandardError; end
+ class SamlConfigError < Base
+ def message
+ 'Something went wrong with your SAML configuration.'
+ end
+ end
class InvalidACSURLError < SamlConfigError
def message
'The ACS URL specfied in your Identity Provider configuration is malformed.'
end