| 1 |
<?php |
| 2 |
/** |
| 3 |
* Thrown when trying to stop a timer that doesn't exist. |
| 4 |
* |
| 5 |
* @package SolidWP\Performance |
| 6 |
*/ |
| 7 |
|
| 8 |
declare( strict_types=1 ); |
| 9 |
|
| 10 |
namespace SolidWP\Performance\Timer\Exceptions; |
| 11 |
|
| 12 |
use LogicException; |
| 13 |
|
| 14 |
/** |
| 15 |
* Thrown when trying to stop a timer that doesn't exist. |
| 16 |
* |
| 17 |
* @package SolidWP\Performance |
| 18 |
*/ |
| 19 |
final class NoActiveTimerException extends LogicException { |
| 20 |
|
| 21 |
} |
| 22 |
|