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

You need to sign in or sign up before continuing.
connection-refused-error.js 332 Bytes
'use strict';

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

/**
 * Thrown when a connection to a database is refused
 */
class ConnectionRefusedError extends ConnectionError {
  constructor(parent) {
    super(parent);
    this.name = 'SequelizeConnectionRefusedError';
  }
}

module.exports = ConnectionRefusedError;