package plebeia

  1. Overview
  2. Docs
Legend:
Page
Library
Module
Module type
Parameter
Class
Class type
Source

Module Base.FsErrorSource

Sourcetype path = Path.t
Sourcetype t =
  1. | Is_file of string * path
  2. | Is_directory of string * path
  3. | No_such_file_or_directory of string * path
  4. | File_or_directory_exists of string * path
  5. | Path_decode_failure of Segment.segment
  6. | Other of string * string
Sourcetype Error.t +=
  1. | FS_error of t
Sourceval error : t -> ('a, Error.t) result