mirror of
https://github.com/Jermolene/TiddlyWiki5.git
synced 2026-01-22 04:21:02 -08:00
17 lines
300 B
JavaScript
17 lines
300 B
JavaScript
/*\
|
|
title: $:/core/modules/utils/errors.js
|
|
type: application/javascript
|
|
module-type: utils
|
|
|
|
Custom errors for TiddlyWiki.
|
|
|
|
\*/
|
|
(function(){
|
|
|
|
function TranscludeRecursionError(transcludeMarker) {
|
|
this.marker = transcludeMarker;
|
|
};
|
|
|
|
exports.TranscludeRecursionError = TranscludeRecursionError;
|
|
|
|
})();
|