Exception: NotImplemented
- Inherits:
-
RuntimeError
- Object
- RuntimeError
- NotImplemented
- Defined in:
- lib/sqa/errors.rb
Overview
Raised when a feature is not yet implemented. Automatically logs using debug_me before raising.
Class Method Summary collapse
-
.raise ⇒ Object
Raises a NotImplemented error with debug logging.
Class Method Details
.raise ⇒ Object
Raises a NotImplemented error with debug logging.
88 89 90 91 |
# File 'lib/sqa/errors.rb', line 88 def self.raise debug_me {"Not Yet Implemented"} super end |