Viewing File: /home/ubuntu/code_review/arcanist/src/filesystem/FilesystemException.php

<?php

/**
 * Exception thrown by Filesystem to indicate an error accessing the file
 * system.
 */
final class FilesystemException extends Exception {

  protected $path;

  /**
   * Create a new FilesystemException, providing a path and a message.
   *
   * @param  string  Path that caused the failure.
   * @param  string  Description of the failure.
   */
  public function __construct($path, $message) {
    $this->path = $path;
    parent::__construct($message);
  }


  /**
   * Retrieve the path associated with the exception. Generally, this is
   * something like a path that couldn't be read or written, or a path that
   * was expected to exist but didn't.
   *
   * @return string  Path associated with the exception.
   */
  public function getPath() {
    return $this->path;
  }

}
Back to Directory File Manager