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);
}
}