Exception: NotImplemented

Inherits:
RuntimeError
  • Object
show all
Defined in:
lib/sqa/errors.rb

Overview

Raised when a feature is not yet implemented. Automatically logs using debug_me before raising.

Examples:

NotImplemented.raise

Class Method Summary collapse

Class Method Details

.raiseObject

Raises a NotImplemented error with debug logging.

Raises:

  • Always raises after logging



88
89
90
91
# File 'lib/sqa/errors.rb', line 88

def self.raise
  debug_me {"Not Yet Implemented"}
  super
end