From 0a5cc370a07f3579e3755222949fced5f8b63609 Mon Sep 17 00:00:00 2001 From: Elia Sulimanov Date: Wed, 10 Jun 2020 22:02:02 +0300 Subject: [PATCH] Done FatFileSystemFactory api docs --- .../FileSystem/FatFileSystemFactory.cs | 22 ++++++++++++++++++- 1 file changed, 21 insertions(+), 1 deletion(-) diff --git a/source/Cosmos.System2/FileSystem/FatFileSystemFactory.cs b/source/Cosmos.System2/FileSystem/FatFileSystemFactory.cs index 768886967..797f0adb1 100644 --- a/source/Cosmos.System2/FileSystem/FatFileSystemFactory.cs +++ b/source/Cosmos.System2/FileSystem/FatFileSystemFactory.cs @@ -38,7 +38,27 @@ namespace Cosmos.System.FileSystem /// /// The partition. /// The root path. - /// FAT signature not found. + /// + /// + /// Thrown when aDevice is null. + /// Thrown when FatFileSystem is null. + /// Thrown on fatal error (contact support). + /// + /// + /// + /// + /// Thrown when aRootPath is null. + /// Thrown on fatal error (contact support). + /// + /// + /// Thrown on fatal error (contact support). + /// + /// + /// Thrown on fatal error (contact support). + /// >FAT signature not found. + /// + /// + /// Thrown on fatal error (contact support). public override FileSystem Create(Partition aDevice, string aRootPath, long aSize) => new FatFileSystem(aDevice, aRootPath, aSize); } }