Blame view

node_modules/when/lib/TimeoutError.js 778 Bytes
ce4c83ff   wxy   初始提交
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
  /** @license MIT License (c) copyright 2010-2014 original author or authors */
  /** @author Brian Cavalier */
  /** @author John Hann */
  
  (function(define) { 'use strict';
  define(function() {
  
  	/**
  	 * Custom error type for promises rejected by promise.timeout
  	 * @param {string} message
  	 * @constructor
  	 */
  	function TimeoutError (message) {
  		Error.call(this);
  		this.message = message;
  		this.name = TimeoutError.name;
  		if (typeof Error.captureStackTrace === 'function') {
  			Error.captureStackTrace(this, TimeoutError);
  		}
  	}
  
  	TimeoutError.prototype = Object.create(Error.prototype);
  	TimeoutError.prototype.constructor = TimeoutError;
  
  	return TimeoutError;
  });
  }(typeof define === 'function' && define.amd ? define : function(factory) { module.exports = factory(); }));