Class Uttk::ObserverError
In: lib/uttk.rb
Parent: ArgumentError

Methods

new   to_s  

Public Class methods

[Source]

# File lib/uttk.rb, line 151
    def initialize ( anObject )
      @obs = anObject
    end

Public Instance methods

[Source]

# File lib/uttk.rb, line 154
    def to_s
      "observer needs to respond to `update' (#{@obs.inspect})"
    end

[Validate]