mirror of
https://github.com/osukey/osukey.git
synced 2025-05-09 07:37:22 +09: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.")
|
|
{
|
|
}
|
|
}
|
|
}
|