10 lines
170 B
PHP
10 lines
170 B
PHP
|
<?php
|
||
|
|
||
|
namespace Drupal\Component\Discovery;
|
||
|
|
||
|
/**
|
||
|
* Exception thrown during discovery if the data is invalid.
|
||
|
*/
|
||
|
class DiscoveryException extends \RuntimeException {
|
||
|
}
|