不要怂,就是干,撸起袖子干!

You need to sign in or sign up before continuing.
connection-acquire-timeout-error.js 410 Bytes
'use strict';

const ConnectionError = require('./../connection-error');

/**
 * Thrown when connection is not acquired due to timeout
 */
class ConnectionAcquireTimeoutError extends ConnectionError {
  constructor(parent) {
    super(parent);
    this.name = 'SequelizeConnectionAcquireTimeoutError';
    Error.captureStackTrace(this, this.constructor);
  }
}

module.exports = ConnectionAcquireTimeoutError;