diff --git a/Dalamud/Interface/Internal/TextureManager.cs b/Dalamud/Interface/Internal/TextureManager.cs
index 1648f1961..b9efb42f3 100644
--- a/Dalamud/Interface/Internal/TextureManager.cs
+++ b/Dalamud/Interface/Internal/TextureManager.cs
@@ -203,7 +203,9 @@ internal class TextureManager : IDisposable, IServiceType, ITextureSubstitutionP
///
/// The texture to obtain a handle to.
/// A texture wrap that can be used to render the texture.
- public IDalamudTextureWrap? GetTexture(TexFile file)
+ /// Thrown when the graphics system is not available yet. Relevant for plugins when LoadRequiredState is set to 0 or 1.
+ /// Thrown when the given is not supported. Most likely is that the file is corrupt.
+ public IDalamudTextureWrap GetTexture(TexFile file)
{
ArgumentNullException.ThrowIfNull(file);