1
0
mirror of https://tt-rss.org/git/tt-rss.git synced 2024-07-07 13:40:53 +02:00
ttrss/lib/dojo/errors/CancelError.js.uncompressed.js
2013-03-18 10:26:26 +04:00

14 lines
299 B
JavaScript

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" });
});