Module: ActiveInteractor::Context::Errors Private
- Included in:
- Base
- Defined in:
- lib/active_interactor/context/errors.rb
Overview
Instance Method Summary collapse
-
#failure_errors ⇒ ActiveModel::Errors
private
Generic errors generated outside of validation.
Instance Method Details
#failure_errors ⇒ ActiveModel::Errors
This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.
Generic errors generated outside of validation.
15 16 17 |
# File 'lib/active_interactor/context/errors.rb', line 15 def failure_errors @failure_errors ||= ActiveModel::Errors.new(self) end |