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

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

- Page: https://pluginprobe.com/plugins/tableberg/1.1.5/code/admin/src/inc/err/ButtonLinkNoUrlError.js
- Raw: https://pluginprobe.com/plugins/tableberg/1.1.5/raw/admin/src/inc/err/ButtonLinkNoUrlError.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/ButtonLinkNoUrlError.js#L10-L20`.

```javascript
/**
 * ButtonLinkNoUrlError.
 */
function ButtonLinkNoUrlError() {
    this.name = "ButtonLinkNoUrlError";
    this.message = "No URL is provided for ButtonLink component.";
}

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

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

```
