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 300
300:     def initialize obj
301:       @obj = obj
302:     end

Public Instance methods

[Source]

     # File lib/coderay.rb, line 304
304:     def to_s
305:       '%s is not Streamable!' % @obj.class
306:     end

[Validate]