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

16 lines
281 B
JavaScript

define("dojo/errors/RequestError", ['./create'], function(create){
// module:
// dojo/errors/RequestError
/*=====
return function(){
// summary:
// TODOC
};
=====*/
return create("RequestError", function(message, response){
this.response = response;
});
});