# wpsynchro/trunk/src/Database/Exception/SerializedStringException.php

WP Synchro – The Ultimate WordPress Migration Tool, version trunk. 17 lines.

- Page: https://pluginprobe.com/plugins/wpsynchro/trunk/code/src/Database/Exception/SerializedStringException.php
- Raw: https://pluginprobe.com/plugins/wpsynchro/trunk/raw/src/Database/Exception/SerializedStringException.php
- Modified: 2026-09-04T12:18:00+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/wpsynchro/trunk/code/src/Database/Exception/SerializedStringException.php#L10-L20`.

```php
<?php

namespace WPSynchro\Database\Exception;

class SerializedStringException extends \Exception
{
    public $data = '';

    public function __construct(string $message, int $code = 0, string $data = '', \Throwable|null $previous = null)
    {
        $this->data = $data;

        // make sure everything is assigned properly
        parent::__construct($message, $code, $previous);
    }
}

```
