summaryrefslogtreecommitdiff
path: root/vendor/php-http/discovery/src/Exception/NotFoundException.php
blob: ef8b9c584ec8098eeef657cf51ea50d47e3eb761 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

namespace Http\Discovery\Exception;

use Http\Discovery\Exception;

/**
 * Thrown when a discovery does not find any matches.
 *
 * @final do NOT extend this class, not final for BC reasons
 *
 * @author Márk Sági-Kazár <[email protected]>
 */
/* final */ class NotFoundException extends \RuntimeException implements Exception
{
}