We currently have an optional task_error available for failed activities. This is the exception class name.
However, if the exception is not built-in, its module is missing: a boto EC2 exception will be EC2ResponseError instead of boto.exception.EC2ResponseError.
Let's provide the full path, for disambiguation and isinstance checking.
We currently have an optional
task_error
available for failed activities. This is the exception class name. However, if the exception is not built-in, its module is missing: a boto EC2 exception will beEC2ResponseError
instead ofboto.exception.EC2ResponseError
.Let's provide the full path, for disambiguation and
isinstance
checking.