Exception: Vertica::Error::SynchronizeError

Inherits:
Vertica::Error
  • Object
show all
Defined in:
lib/vertica/error.rb

Constant Summary

Constants inherited from Vertica::Error

QUERY_ERROR_CLASSES

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(requested_job) ⇒ SynchronizeError

Returns a new instance of SynchronizeError.



15
16
17
18
# File 'lib/vertica/error.rb', line 15

def initialize(requested_job)
  @requested_job = requested_job
  super("Cannot execute #{requested_job}, connection is in use.")
end

Instance Attribute Details

#requested_jobObject (readonly)

Returns the value of attribute requested_job.



13
14
15
# File 'lib/vertica/error.rb', line 13

def requested_job
  @requested_job
end

#running_jobObject (readonly)

Returns the value of attribute running_job.



13
14
15
# File 'lib/vertica/error.rb', line 13

def running_job
  @running_job
end