diff options
Diffstat (limited to 'src/Ryujinx.HLE/Loaders/Npdm/Npdm.cs')
| -rw-r--r-- | src/Ryujinx.HLE/Loaders/Npdm/Npdm.cs | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/src/Ryujinx.HLE/Loaders/Npdm/Npdm.cs b/src/Ryujinx.HLE/Loaders/Npdm/Npdm.cs index 622d7ee0..4a99de98 100644 --- a/src/Ryujinx.HLE/Loaders/Npdm/Npdm.cs +++ b/src/Ryujinx.HLE/Loaders/Npdm/Npdm.cs @@ -24,6 +24,13 @@ namespace Ryujinx.HLE.Loaders.Npdm public Aci0 Aci0 { get; private set; } public Acid Acid { get; private set; } + /// <exception cref="InvalidNpdmException">The stream doesn't contain valid NPDM data.</exception> + /// <exception cref="System.NotImplementedException">The FsAccessHeader.ContentOwnerId section is not implemented.</exception> + /// <exception cref="System.ArgumentException">The stream does not support reading, is <see langword="null"/>, or is already closed.</exception> + /// <exception cref="System.ArgumentException">An error occured while reading bytes from the stream.</exception> + /// <exception cref="EndOfStreamException">The end of the stream is reached.</exception> + /// <exception cref="System.ObjectDisposedException">The stream is closed.</exception> + /// <exception cref="IOException">An I/O error occurred.</exception> public Npdm(Stream stream) { BinaryReader reader = new(stream); |
