| 1 |
<?php |
| 2 |
/*! |
| 3 |
* Hybridauth |
| 4 |
* https://hybridauth.github.io | https://github.com/hybridauth/hybridauth |
| 5 |
* (c) 2017 Hybridauth authors | https://hybridauth.github.io/license.html |
| 6 |
*/ |
| 7 |
|
| 8 |
namespace Hybridauth\Exception; |
| 9 |
|
| 10 |
/** |
| 11 |
* UnexpectedValueException |
| 12 |
* |
| 13 |
* Exception thrown if a value does not match with a set of values. Typically this happens when a function calls |
| 14 |
* another function and expects the return value to be of a certain type or value not including arithmetic or |
| 15 |
* buffer related errors. |
| 16 |
*/ |
| 17 |
class UnexpectedValueException extends RuntimeException implements ExceptionInterface |
| 18 |
{ |
| 19 |
} |
| 20 |
|