class Sinject::DependencyContractMissingMethodsException

Public Class Methods

new(methods) click to toggle source
# File lib/sinject/exceptions.rb, line 3
def initialize(methods)
  @methods = methods
end

Public Instance Methods

to_s() click to toggle source
# File lib/sinject/exceptions.rb, line 7
def to_s
  method_names = @methods.join(', ')
  "The following methods have not been implemented: '#{method_names}'"
end