20 lines
360 B
PHP
20 lines
360 B
PHP
|
<?PHP
|
||
|
declare(strict_types = 1);
|
||
|
|
||
|
/**
|
||
|
* Reports a failure to encode JSON data.
|
||
|
*/
|
||
|
final class MDJsonEncodingFailedException extends Exception {
|
||
|
/**
|
||
|
* Error message.
|
||
|
*
|
||
|
* @return string
|
||
|
*/
|
||
|
public function errorMessage() {
|
||
|
//error message
|
||
|
$errorMsg = 'Failed to encode JSON data.';
|
||
|
return $errorMsg;
|
||
|
|
||
|
}
|
||
|
}
|