CancelError.js 272 B

12345678910111213
  1. define(["./create"], function(create){
  2. // module:
  3. // dojo/errors/CancelError
  4. /*=====
  5. return function(){
  6. // summary:
  7. // Default error if a promise is canceled without a reason.
  8. };
  9. =====*/
  10. return create("CancelError", null, null, { dojoType: "cancel" });
  11. });