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.



51
52
53
54
# File 'lib/coderunner/instance_methods.rb', line 51

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