Exception: Fluent::UnrecoverableError
- Inherits:
-
StandardError
- Object
- StandardError
- Fluent::UnrecoverableError
- Defined in:
- lib/fluent/error.rb
Direct Known Subclasses
Instance Method Summary collapse
-
#initialize(error_message = nil) ⇒ UnrecoverableError
constructor
A new instance of UnrecoverableError.
- #to_s ⇒ Object
Constructor Details
#initialize(error_message = nil) ⇒ UnrecoverableError
Returns a new instance of UnrecoverableError.
19 20 21 |
# File 'lib/fluent/error.rb', line 19 def initialize( = nil) @message = || "an unrecoverable error occurs in Fluentd process" end |
Instance Method Details
#to_s ⇒ Object
23 24 25 |
# File 'lib/fluent/error.rb', line 23 def to_s @message end |