1: <?php
2: namespace Yep\Stopwatch;
3:
4: class StopwatchLapNotStartedException extends \BadMethodCallException {
5: }
6:
7: class StopwatchAlreadyExistsException extends \LogicException {
8: }
9:
10: class StopwatchDoesntExistException extends \LogicException {
11: }
12:
13: class StopwatchEventDoesntExistException extends \Exception {
14: }
15: