1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20:
<?php
namespace Dropbox;
/**
* If, when loading a serialized {@link RequestToken} or {@link AccessToken}, the input string is
* malformed, this exception will be thrown.
*/
final class DeserializeException extends \Exception
{
/**
* @param string $message
*
* @internal
*/
function __construct($message)
{
parent::__construct($message);
}
}