Exception: Fluent::NotFoundPluginError
- Inherits:
-
ConfigError
- Object
- StandardError
- ConfigError
- Fluent::NotFoundPluginError
- Defined in:
- lib/fluent/config/error.rb
Instance Attribute Summary collapse
-
#kind ⇒ Object
readonly
Returns the value of attribute kind.
-
#type ⇒ Object
readonly
Returns the value of attribute type.
Instance Method Summary collapse
-
#initialize(msg, type: nil, kind: nil) ⇒ NotFoundPluginError
constructor
A new instance of NotFoundPluginError.
Constructor Details
#initialize(msg, type: nil, kind: nil) ⇒ NotFoundPluginError
Returns a new instance of NotFoundPluginError.
36 37 38 39 40 41 42 |
# File 'lib/fluent/config/error.rb', line 36 def initialize(msg, type: nil, kind: nil) @msg = msg @type = type @kind = kind super(msg) end |
Instance Attribute Details
#kind ⇒ Object (readonly)
Returns the value of attribute kind.
34 35 36 |
# File 'lib/fluent/config/error.rb', line 34 def kind @kind end |
#type ⇒ Object (readonly)
Returns the value of attribute type.
34 35 36 |
# File 'lib/fluent/config/error.rb', line 34 def type @type end |