2021-11-26 03:23:07 +01:00
|
|
|
<?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
|
2022-09-15 21:38:41 +02:00
|
|
|
return 'Failed to encode JSON data.';
|
2021-11-26 03:23:07 +01:00
|
|
|
|
|
|
|
}
|
|
|
|
}
|