summaryrefslogtreecommitdiff
path: root/lib/dojo/errors/CancelError.js.uncompressed.js
blob: 2d96b05216c6feed140c7767f114f21a4d958590 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
define("dojo/errors/CancelError", ["./create"], function(create){
	// module:
	//		dojo/errors/CancelError

	/*=====
	return function(){
		// summary:
		//		Default error if a promise is canceled without a reason.
	};
	=====*/

	return create("CancelError", null, null, { dojoType: "cancel" });
});