2020-12-08 13:49:36 +08: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 20:15:10 +08:00
|
|
|
}
|