Exception: ConvenientService::Support::DependencyContainer::Exceptions::NotExportableModule
- Inherits:
-
Exception
- Object
- StandardError
- Exception
- ConvenientService::Support::DependencyContainer::Exceptions::NotExportableModule
- Defined in:
- lib/convenient_service/support/dependency_container/exceptions.rb
Overview
Instance Method Summary collapse
- #initialize(mod:) ⇒ void constructor
Constructor Details
#initialize(mod:) ⇒ void
37 38 39 40 41 42 43 44 45 |
# File 'lib/convenient_service/support/dependency_container/exceptions.rb', line 37 def initialize(mod:) = <<~TEXT Module `#{mod}` can NOT export methods. Did you forget to include `ConvenientService::DependencyContainer::Export` into it? TEXT super() end |