Class Dramatis::Error::Uncaught
In: lib/dramatis/error/uncaught.rb
Parent: Dramatis::Error

Exception raised when the runtime exits with uncaught exceptions.

Methods

to_s  

Public Instance methods

combines the name of all uncaught exceptions.

[Source]

    # File lib/dramatis/error/uncaught.rb, line 14
14:   def to_s
15:     super + ": " + @exceptions.join( " "  )
16:   end

[Validate]