Exception: Vertica::Error::SynchronizeError
- Inherits:
-
Vertica::Error
- Object
- StandardError
- Vertica::Error
- Vertica::Error::SynchronizeError
- Defined in:
- lib/vertica/error.rb
Constant Summary
Constants inherited from Vertica::Error
Instance Attribute Summary collapse
-
#requested_job ⇒ Object
readonly
Returns the value of attribute requested_job.
-
#running_job ⇒ Object
readonly
Returns the value of attribute running_job.
Instance Method Summary collapse
-
#initialize(requested_job) ⇒ SynchronizeError
constructor
A new instance of SynchronizeError.
Constructor Details
#initialize(requested_job) ⇒ SynchronizeError
Returns a new instance of SynchronizeError.
16 17 18 19 |
# File 'lib/vertica/error.rb', line 16 def initialize(requested_job) @requested_job = requested_job super("Cannot execute #{requested_job}, connection is in use.") end |
Instance Attribute Details
#requested_job ⇒ Object (readonly)
Returns the value of attribute requested_job.
14 15 16 |
# File 'lib/vertica/error.rb', line 14 def requested_job @requested_job end |
#running_job ⇒ Object (readonly)
Returns the value of attribute running_job.
14 15 16 |
# File 'lib/vertica/error.rb', line 14 def running_job @running_job end |