How to handle errors thrown by couchbase SDK?

225 Views Asked by At

I have a NodeJS application which connects to couchbase and uses its sdk("couchbase": "^2.0.8") to connect and execute queries. In some cases the SDK code throws error like this:

Bucket.prototype.getMulti = function(keys, callback) {
  if (!Array.isArray(keys) || keys.length === 0) {
    throw new TypeError('First argument needs to be an array of length > 0.');
  }
  if (typeof callback !== 'function') {
    throw new TypeError('Second argument needs to be a callback.');
  }
  .
  .
  .
};

and this is how I am calling it:

try {
  bucket.getMulti(keys, function(err, result) {
    if(err){
        console.log(err);
    }
    .
    .
    .
  }
} catch (error) {
  console.log(error);
}

Since the error is not sent in callback so there is no way to check and respond appropriately to the client, it is simply crashing the app. I can do these checks before calling this particular function but there are many other functions like these which are throwing errors, what is the best way to handle them and respond to client instead of crashing the app?

0

There are 0 best solutions below