mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-03-13 10:11:36 -07:00
16 lines
385 B
JavaScript
16 lines
385 B
JavaScript
/*\
|
|
title: $:/core/modules/utils/errors.js
|
|
type: application/javascript
|
|
module-type: utils
|
|
\*/
|
|
|
|
function TranscludeRecursionError() {
|
|
Error.apply(this,arguments);
|
|
this.signatures = Object.create(null);
|
|
};
|
|
|
|
TranscludeRecursionError.MAX_WIDGET_TREE_DEPTH = 1000;
|
|
|
|
TranscludeRecursionError.prototype = Object.create(Error);
|
|
|
|
exports.TranscludeRecursionError = TranscludeRecursionError;
|