mirror of
https://github.com/ppy/osu.git
synced 2024-11-06 23:07:44 +08:00
12 lines
259 B
C#
12 lines
259 B
C#
|
using System;
|
||
|
|
||
|
namespace osu.Game.Online.RealtimeMultiplayer
|
||
|
{
|
||
|
public class NotJoinedRoomException : Exception
|
||
|
{
|
||
|
public NotJoinedRoomException()
|
||
|
: base("This user has not yet joined a multiplayer room.")
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|