Exception: Brut::Framework::Errors::NotImplemented
- Inherits:
-
Brut::Framework::Error
- Object
- StandardError
- Brut::Framework::Error
- Brut::Framework::Errors::NotImplemented
- Defined in:
- lib/brut/framework/errors/not_implemented.rb
Overview
Thrown when use of a feature of Brut is detected, but that
feature is not yet implemented. This is advisory only and
not a promise to ever implement that feature. It's mostly used
when two APIs are very similar and one might expect both to
support the same features, but for technical reasons one of the APIs does not.
Instance Method Summary collapse
-
#initialize(message = nil) ⇒ NotImplemented
constructor
A new instance of NotImplemented.
Constructor Details
#initialize(message = nil) ⇒ NotImplemented
Returns a new instance of NotImplemented.
7 8 9 10 11 12 13 |
# File 'lib/brut/framework/errors/not_implemented.rb', line 7 def initialize(=nil) if .nil? super else super("NOT IMPLEMENTED: #{}") end end |