mirror of
https://github.com/ppy/osu
synced 2025-02-02 19:32:19 +00: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.")
|
|
{
|
|
}
|
|
}
|
|
}
|