Link scrapping for preview

This commit is contained in:
2025-06-21 13:46:30 +08:00
parent 95010e4188
commit 5f30b56ef8
8 changed files with 546 additions and 2 deletions

View File

@ -0,0 +1,17 @@
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)
{
}
}