class Fluent::NotFoundPluginError

Attributes

kind[R]
type[R]

Public Class Methods

new(msg, type: nil, kind: nil) click to toggle source
Calls superclass method
# File lib/fluent/config/error.rb, line 36
def initialize(msg, type: nil, kind: nil)
  @msg = msg
  @type = type
  @kind = kind

  super(msg)
end