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