| 1 |
<?php |
| 2 |
// phpcs:disable Yoast.NamingConventions.NamespaceName.TooLong -- Needed in the folder structure. |
| 3 |
|
| 4 |
namespace Yoast\WP\SEO\MyYoast_Client\Application\Exceptions; |
| 5 |
|
| 6 |
use RuntimeException; |
| 7 |
|
| 8 |
/** |
| 9 |
* Exception thrown when token storage or retrieval fails. |
| 10 |
* |
| 11 |
* Wraps underlying encryption failures into a storage-specific exception |
| 12 |
* so callers don't need to depend on crypto internals. |
| 13 |
*/ |
| 14 |
class Token_Storage_Exception extends RuntimeException { |
| 15 |
|
| 16 |
} |
| 17 |
|