mirror of
https://github.com/ppy/osu.git
synced 2024-12-16 18:32:54 +08:00
13 lines
260 B
C#
13 lines
260 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.")
|
|
{
|
|
}
|
|
}
|
|
}
|