You are here

DiscoveryException.php in Markdown 8.2

File

src/BcSupport/DiscoveryException.php
View source
<?php

namespace Drupal\markdown\BcSupport;

if (!class_exists('\\Drupal\\Component\\Discovery\\DiscoveryException')) {

  /* @noinspection PhpIgnoredClassAliasDeclaration */
  class_alias('\\RuntimeException', '\\Drupal\\Component\\Discovery\\DiscoveryException');
}
use Drupal\Component\Discovery\DiscoveryException as CoreDiscoveryException;

/**
 * Exception thrown during discovery if the data is invalid.
 *
 * @deprecated in markdown:8.x-2.0 and is removed from markdown:3.0.0.
 *   Use \Drupal\Component\Discovery\DiscoveryException instead.
 *
 * @see https://www.drupal.org/project/markdown/issues/3103679
 */
class DiscoveryException extends CoreDiscoveryException {

}

Classes

Namesort descending Description
DiscoveryException Deprecated Exception thrown during discovery if the data is invalid.