PluginProbe
Tableberg – Simple Gutenberg Table Block / 1.1.5
Tableberg – Simple Gutenberg Table Block v1.1.5
1.1.5 1.1.4 1.1.3 1.1.2 1.1.1 1.1.0 1.0.5 1.0.4 1.0.3 1.0.2 1.0.1 trunk 0.0.2 0.2.1 0.3.2 0.3.3 0.4.1 0.5.0 0.5.1 0.5.2 0.5.3 0.5.4 0.5.5 0.5.6 0.5.7 All 42 releases
tableberg / admin / src / inc / err / ContentNotFoundError.js

ContentNotFoundError.js in Tableberg – Simple Gutenberg Table Block 1.1.5, at admin/src/inc/err/ContentNotFoundError.js

17 lines 391 B
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 /**
2 * ContentNotFoundError error.
3 *
4 * @param {string} contentKey target not found content key
5 */
6 function ContentNotFoundError(contentKey) {
7 this.name = "ContentNotFoundError";
8 this.message = `Content not found for key: [${contentKey}]`;
9 }
10
11 ContentNotFoundError.prototype = Object.create(Error.prototype);
12
13 /**
14 * @module ContentNotFound
15 */
16 export default ContentNotFoundError;
17