2020-12-08 05:49:36 +00:00
|
|
|
using System;
|
|
|
|
|
|
|
|
namespace osu.Game.Online.RealtimeMultiplayer
|
|
|
|
{
|
|
|
|
public class NotJoinedRoomException : Exception
|
|
|
|
{
|
|
|
|
public NotJoinedRoomException()
|
|
|
|
: base("This user has not yet joined a multiplayer room.")
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|
2020-12-08 12:15:10 +00:00
|
|
|
}
|