Exception: Operaton::Bpm::Client::ExternalTaskClientException

Inherits:
StandardError
  • Object
show all
Defined in:
lib/operaton/bpm/client/exceptions.rb

Overview

Mirrors org.operaton.bpm.client.exception.ExternalTaskClientException

Instance Method Summary collapse

Constructor Details

#initialize(message = nil, cause = nil) ⇒ ExternalTaskClientException

Returns a new instance of ExternalTaskClientException.



10
11
12
13
# File 'lib/operaton/bpm/client/exceptions.rb', line 10

def initialize(message = nil, cause = nil)
  super(message)
  @wrapped_cause = cause
end

Instance Method Details

#causeObject



15
16
17
# File 'lib/operaton/bpm/client/exceptions.rb', line 15

def cause
  @wrapped_cause || super
end