1
0
mirror of https://github.com/ppy/osu.git synced 2024-12-17 06:42:54 +08:00
osu-lazer/osu.Game/Online/RealtimeMultiplayer/AlreadyInRoomException.cs
2020-12-09 12:07:19 +09:00

16 lines
405 B
C#

// 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.
using System;
namespace osu.Game.Online.RealtimeMultiplayer
{
public class AlreadyInRoomException : Exception
{
public AlreadyInRoomException()
: base("This user is already in a multiplayer room.")
{
}
}
}