mirror of
https://github.com/goatcorp/Dalamud.git
synced 2026-01-03 14:23:40 +01:00
16 lines
446 B
C#
16 lines
446 B
C#
namespace Dalamud.Storage;
|
|
|
|
/// <summary>
|
|
/// Thrown if all read operations fail.
|
|
/// </summary>
|
|
public class FileReadException : Exception
|
|
{
|
|
/// <summary>
|
|
/// Initializes a new instance of the <see cref="FileReadException"/> class.
|
|
/// </summary>
|
|
/// <param name="inner">Inner error that caused this exception.</param>
|
|
internal FileReadException(Exception inner)
|
|
: base("Failed to read file", inner)
|
|
{
|
|
}
|
|
}
|