mirror of
https://github.com/copyrighttxt/watrbx-game-engine.git
synced 2026-09-04 20:57:49 +00:00
21 lines
273 B
C#
21 lines
273 B
C#
using System;
|
|
|
|
namespace Roblox;
|
|
|
|
public class NotLoggedException : Exception
|
|
{
|
|
public NotLoggedException(string reason)
|
|
: base(reason)
|
|
{
|
|
}
|
|
|
|
public NotLoggedException(string reason, Exception inner)
|
|
: base(reason, inner)
|
|
{
|
|
}
|
|
|
|
public NotLoggedException()
|
|
{
|
|
}
|
|
}
|