osu/osu.Game/Online/RealtimeMultiplayer/NotJoinedRoomException.cs

16 lines
410 B
C#
Raw Normal View History

2020-12-09 03:17:37 +00:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
// See the LICENCE file in the repository root for full licence text.
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
}