Mike
Mike

Reputation: 735

Why can't I find any documentation on Aws::SQS::Errors::NonExistentQueue

SQS client raises Aws::SQS::Errors::NonExistentQueue error when queue is not found. But, why

https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/SQS/Errors.html This doc doesn't mention a thing about it. However, I found it here https://docs.aws.amazon.com/AWSSimpleQueueService/latest/APIReference/API_GetQueueUrl.html#API_GetQueueUrl_Errors. But, this is a general api doc, not specific to Ruby.

Is documentation missing, is there a simple way to find what errors are being thrown?

Upvotes: 1

Views: 330

Answers (1)

lacostenycoder
lacostenycoder

Reputation: 11226

The docs were likely generated with yard however digging through the git repo I was only able to find version 2x tags and no version 3 tagged anywhere. Only thing I could find was this commit which added the feature specs. Somehow it seems this never made it into the yard code in docs. I'm not sure what version 3 is referring to.

Upvotes: 0

Related Questions