FieldException.php 312 B

1234567891011
  1. <?php
  2. namespace Drupal\Core\Field;
  3. /**
  4. * Base class for all exceptions thrown by the Entity Field API functions.
  5. *
  6. * This class has no functionality of its own other than allowing all
  7. * Entity Field API exceptions to be caught by a single catch block.
  8. */
  9. class FieldException extends \RuntimeException {}