You are here

DirectoryNotReadyException.php in Drupal 9

Same filename and directory in other branches
  1. 8 core/lib/Drupal/Core/File/Exception/DirectoryNotReadyException.php

File

core/lib/Drupal/Core/File/Exception/DirectoryNotReadyException.php
View source
<?php

namespace Drupal\Core\File\Exception;


/**
 * Exception thrown when a file's destination directory is not ready.
 *
 * A directory can be considered not ready when it either does not exist, or
 * is not writable.
 */
class DirectoryNotReadyException extends FileException {

}

Classes

Namesort descending Description
DirectoryNotReadyException Exception thrown when a file's destination directory is not ready.