Exception: EVSS::IntentToFile::ServiceException
- Inherits:
-
ServiceException
- Object
- StandardError
- Common::Exceptions::BaseError
- ServiceException
- EVSS::IntentToFile::ServiceException
- Defined in:
- lib/evss/intent_to_file/service_exception.rb
Overview
Custom exception that maps EVSS ITF errors to error details defined in config/locales/exceptions.en.yml
Constant Summary collapse
- ERROR_MAP =
{ 'partner.service.error' => 'evss.intent_to_file.partner_service_error', 'service.error' => 'evss.intent_to_file.internal_service_error', 'intentType.invalid' => 'evss.intent_to_file.intent_type_invalid', 'partner.service.invalid' => 'evss.intent_to_file.partner_service_invalid', 'default' => 'common.exceptions.internal_server_error' }.freeze
Instance Attribute Summary collapse
-
#key ⇒ Object
readonly
Returns the value of attribute key.
-
#messages ⇒ Object
readonly
Returns the value of attribute messages.
Instance Method Summary collapse
- #errors ⇒ Object
- #i18n_key ⇒ Object private
Methods inherited from ServiceException
#error_key, #initialize, #messages_has_key?
Methods inherited from Common::Exceptions::BaseError
#i18n_data, #i18n_field, #i18n_interpolated, #log_to_sentry?, #message, #sentry_type, #status_code
Constructor Details
This class inherits a constructor from EVSS::ServiceException
Instance Attribute Details
#key ⇒ Object (readonly)
Returns the value of attribute key.
19 20 21 |
# File 'lib/evss/intent_to_file/service_exception.rb', line 19 def key @key end |
#messages ⇒ Object (readonly)
Returns the value of attribute messages.
19 20 21 |
# File 'lib/evss/intent_to_file/service_exception.rb', line 19 def @messages end |
Instance Method Details
#errors ⇒ Object
21 22 23 24 25 26 27 |
# File 'lib/evss/intent_to_file/service_exception.rb', line 21 def errors Array( Common::Exceptions::SerializableError.new( i18n_data.merge(source: 'EVSS::IntentToFile::Service', meta: { messages: @messages }) ) ) end |
#i18n_key ⇒ Object (private)
31 32 33 |
# File 'lib/evss/intent_to_file/service_exception.rb', line 31 def i18n_key @key end |