# tableberg/1.1.5/admin/src/inc/err/ContentNotFoundError.js

Tableberg – Simple Gutenberg Table Block, version 1.1.5. 17 lines.

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/admin/src/inc/err/ContentNotFoundError.js
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/admin/src/inc/err/ContentNotFoundError.js
- Modified: 2026-09-16T03:30:32+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/tableberg/1.1.5/code/admin/src/inc/err/ContentNotFoundError.js#L10-L20`.

```javascript
/**
 * ContentNotFoundError error.
 *
 * @param {string} contentKey target not found content key
 */
function ContentNotFoundError(contentKey) {
    this.name = "ContentNotFoundError";
    this.message = `Content not found for key: [${contentKey}]`;
}

ContentNotFoundError.prototype = Object.create(Error.prototype);

/**
 * @module ContentNotFound
 */
export default ContentNotFoundError;

```
