Files
zap-stream-api/NostrStreamer/Services/StreamManager/LowBalanceException.cs
2023-07-25 17:45:44 +01:00

9 lines
173 B
C#

namespace NostrStreamer.Services.StreamManager;
public class LowBalanceException : Exception
{
public LowBalanceException(string message) : base(message)
{
}
}