class Quill::NoFactoryError
Attributes
klass[R]
Public Class Methods
new(klass)
click to toggle source
# File lib/quill/no_factory_error.rb, line 3 def initialize(klass) @klass = klass end
Public Instance Methods
message()
click to toggle source
# File lib/quill/no_factory_error.rb, line 7 def message "The class #{klass.name} cannot be registered with the container, as it does not extend Quill::DSL." end