mirror of
https://github.com/ppy/osu.git
synced 2025-01-29 07:23:22 +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.")
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|