Class CodeRay::NotStreamableError
In: lib/coderay.rb
Parent: Exception

This Exception is raised when you try to stream with something that is not capable of streaming.

Methods

new   to_s  

Public Class methods

[Source]

     # File lib/coderay.rb, line 297
297:     def initialize obj
298:       @obj = obj
299:     end

Public Instance methods

[Source]

     # File lib/coderay.rb, line 301
301:     def to_s
302:       '%s is not Streamable!' % @obj.class
303:     end

[Validate]