# give/4.16.9/src/Framework/Exceptions/Contracts/LoggableException.php

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

- Page: https://pluginprobe.com/plugins/give/4.16.9/code/src/Framework/Exceptions/Contracts/LoggableException.php
- Raw: https://pluginprobe.com/plugins/give/4.16.9/raw/src/Framework/Exceptions/Contracts/LoggableException.php
- Modified: 2022-06-17T00:03:36+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/Exceptions/Contracts/LoggableException.php#L10-L20`.

```php
<?php

namespace Give\Framework\Exceptions\Contracts;

interface LoggableException
{
    /**
     * Returns the human-readable message for the log
     *
     * @since 2.11.1
     */
    public function getLogMessage(): string;

    /**
     * Returns an associated array with additional context for the log
     *
     * @since 2.11.1
     */
    public function getLogContext(): array;
}

```
