# give/4.16.9/src/Framework/FieldsAPI/Exceptions/EmptyNameException.php

GiveWP – Donation Plugin and Fundraising Platform, version 4.16.9. 18 lines.

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/FieldsAPI/Exceptions/EmptyNameException.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Framework/FieldsAPI/Exceptions/EmptyNameException.php
- Modified: 2021-11-23T23:55:18+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/give/4.16.9/code/src/Framework/FieldsAPI/Exceptions/EmptyNameException.php#L10-L20`.

```php
<?php

namespace Give\Framework\FieldsAPI\Exceptions;

use Give\Framework\Exceptions\Primitives\Exception;

/**
 * @since 2.16.0
 */
class EmptyNameException extends Exception
{
    public function __construct($code = 0, Exception $previous = null)
    {
        $message = "Node name can not be empty";
        parent::__construct($message, $code, $previous);
    }
}

```
