18 lines
408 B
C#
18 lines
408 B
C#
using System;
|
|
|
|
namespace DysonNetwork.Sphere.Connection.WebReader;
|
|
|
|
/// <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)
|
|
{
|
|
}
|
|
}
|