1
0
mirror of https://github.com/ppy/osu.git synced 2024-11-06 07:47:25 +08:00
osu-lazer/osu.Game/Online/RealtimeMultiplayer/NotJoinedRoomException.cs

13 lines
260 B
C#
Raw Normal View History

2020-12-08 13:49:36 +08:00
using System;
namespace osu.Game.Online.RealtimeMultiplayer
{
public class NotJoinedRoomException : Exception
{
public NotJoinedRoomException()
: base("This user has not yet joined a multiplayer room.")
{
}
}
2020-12-08 20:15:10 +08:00
}