Exception: Faulty::UninitializedError
- Inherits:
-
FaultyError
- Object
- StandardError
- FaultyError
- Faulty::UninitializedError
- Defined in:
- lib/faulty/error.rb
Overview
Raised if using the global Faulty object without initializing it
Instance Method Summary collapse
-
#initialize(message = nil) ⇒ UninitializedError
constructor
A new instance of UninitializedError.
Constructor Details
#initialize(message = nil) ⇒ UninitializedError
Returns a new instance of UninitializedError.
9 10 11 12 |
# File 'lib/faulty/error.rb', line 9 def initialize( = nil) ||= 'Faulty is not initialized' super() end |