mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-05 05:07:48 +00:00
16 lines
208 B
C#
16 lines
208 B
C#
using System;
|
|
|
|
namespace Roblox.Common.Mail.Pop3;
|
|
|
|
public class Pop3Exception : ApplicationException
|
|
{
|
|
public Pop3Exception()
|
|
{
|
|
}
|
|
|
|
public Pop3Exception(string ErrorMessage)
|
|
: base(ErrorMessage)
|
|
{
|
|
}
|
|
}
|