Exception: Fluent::NotFoundPluginError

Inherits:
ConfigError
  • Object
show all
Defined in:
lib/fluent/config/error.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

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

#kindObject (readonly)

Returns the value of attribute kind.



34
35
36
# File 'lib/fluent/config/error.rb', line 34

def kind
  @kind
end

#typeObject (readonly)

Returns the value of attribute type.



34
35
36
# File 'lib/fluent/config/error.rb', line 34

def type
  @type
end