class Quill::UnsatisfiedDependencyError

Attributes

dependency[R]

Public Class Methods

new(dependency) click to toggle source
Calls superclass method
# File lib/quill/unsatisfied_dependency_error.rb, line 3
def initialize(dependency)
  @dependency = dependency
  super
end

Public Instance Methods

message() click to toggle source
# File lib/quill/unsatisfied_dependency_error.rb, line 8
def message
  "No implementation for the feature #{dependency} is registered with the container."
end