Files
Swarm/DysonNetwork.Insight/Reader/WebReaderException.cs

16 lines
380 B
C#

namespace DysonNetwork.Insight.Reader;
/// <summary>
/// Exception thrown when an error occurs during web reading operations
/// </summary>
public class WebReaderException : Exception
{
public WebReaderException(string message) : base(message)
{
}
public WebReaderException(string message, Exception innerException) : base(message, innerException)
{
}
}