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