mirror of
https://github.com/openseadragon/openseadragon.git
synced 2025-01-31 23:21:42 +03:00
12 lines
215 B
JavaScript
12 lines
215 B
JavaScript
|
|
||
|
(function( $ ){
|
||
|
|
||
|
$.DziError = function(message) {
|
||
|
Error.apply(this, arguments);
|
||
|
this.message = message;
|
||
|
};
|
||
|
$.DziError.prototype = new Error();
|
||
|
$.DziError.constructor = $.DziError;
|
||
|
|
||
|
}( OpenSeadragon ));
|