♻️ I have no idea what am I doing. Might be mixing stuff
This commit is contained in:
17
DysonNetwork.Sphere/WebReader/WebReaderException.cs
Normal file
17
DysonNetwork.Sphere/WebReader/WebReaderException.cs
Normal file
@@ -0,0 +1,17 @@
|
||||
using System;
|
||||
|
||||
namespace DysonNetwork.Sphere.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)
|
||||
{
|
||||
}
|
||||
}
|
Reference in New Issue
Block a user