Exception: Fluent::RedshiftOutput::RedshiftError

Inherits:
StandardError
  • Object
show all
Defined in:
lib/fluent/plugin/out_redshift.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(msg) ⇒ RedshiftError

Returns a new instance of RedshiftError.



265
266
267
268
269
270
271
272
273
274
# File 'lib/fluent/plugin/out_redshift.rb', line 265

def initialize(msg)
  case msg
  when PG::Error
    @pg_error = msg
    super(msg.to_s)
    set_backtrace(msg.backtrace)
  else
    super
  end
end

Instance Attribute Details

#pg_errorObject

Returns the value of attribute pg_error.



276
277
278
# File 'lib/fluent/plugin/out_redshift.rb', line 276

def pg_error
  @pg_error
end