DirectoryNotReadyException.php 283 B

123456789101112
  1. <?php
  2. namespace Drupal\Core\File\Exception;
  3. /**
  4. * Exception thrown when a file's destination directory is not ready.
  5. *
  6. * A directory can be considered not ready when it either does not exist, or
  7. * is not writable.
  8. */
  9. class DirectoryNotReadyException extends FileException {
  10. }