Exception: CodeRunner::CRFatal

Inherits:
StandardError
  • Object
show all
Defined in:
lib/coderunner/instance_methods.rb

Overview

should never be rescued - must always terminate execution

Instance Method Summary collapse

Constructor Details

#initialize(mess = "") ⇒ CRFatal

Returns a new instance of CRFatal.



57
58
59
60
# File 'lib/coderunner/instance_methods.rb', line 57

def initialize(mess="")
	mess += "\n\n#{self.class} created in directory #{Dir.pwd}"
	super(mess)
end