Files

9 lines
204 B
C#
Raw Permalink Normal View History

2026-04-10 22:06:39 +08:00
using System;
public sealed class BriskNetworkException : BriskException
{
public BriskNetworkException(string message, Exception innerException = null) : base(message, innerException)
{
}
}