1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2025-07-03 18:42:50 +00:00
Cameron Fischer 777176d7ec Better handling of infinite recursion
But it could be better still...
2023-12-11 21:55:03 -05:00

19 lines
317 B
JavaScript

/*\
title: $:/core/modules/utils/errors.js
type: application/javascript
module-type: utils
Custom errors for TiddlyWiki.
\*/
(function(){
function TranscludeRecursionError(depth) {
this.depth = depth;
this.signatures = Object.create(null);
};
exports.TranscludeRecursionError = TranscludeRecursionError;
})();