mirror of
https://github.com/ppy/osu.git
synced 2024-11-07 05:27:51 +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.")
|
|
{
|
|
}
|
|
}
|
|
} |