Exception: CodeRunner::CRError

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

Overview

usually can be handled

Instance Method Summary collapse

Constructor Details

#initialize(mess = "") ⇒ CRError

Returns a new instance of CRError.



49
50
51
52
# File 'lib/coderunner/instance_methods.rb', line 49

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