ImmutableConfigException.php 215 B

1234567891011
  1. <?php
  2. namespace Drupal\Core\Config;
  3. /**
  4. * Exception throw when an immutable config object is altered.
  5. *
  6. * @see \Drupal\Core\Config\ImmutableConfig
  7. */
  8. class ImmutableConfigException extends \LogicException {
  9. }