♻️ Move the web reader from Sphere to Insight (w.i.p)
This commit is contained in:
15
DysonNetwork.Insight/Reader/WebReaderException.cs
Normal file
15
DysonNetwork.Insight/Reader/WebReaderException.cs
Normal file
@@ -0,0 +1,15 @@
|
||||
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)
|
||||
{
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user