1: <?php
2:
3: namespace Symfony\Component\Finder\Exception;
4:
5: /**
6: * @author Jean-François Simon <contact@jfsimon.fr>
7: */
8: interface ExceptionInterface
9: {
10: /**
11: * @return \Symfony\Component\Finder\Adapter\AdapterInterface
12: */
13: public function getAdapter();
14: }
15: