1
0
mirror of https://github.com/ppy/osu.git synced 2024-09-24 06:47:36 +08:00
osu-lazer/osu.Game/Online/Multiplayer/NotJoinedRoomException.cs

24 lines
645 B
C#
Raw Normal View History

2023-06-23 00:37:25 +08:00
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
2020-12-09 11:17:37 +08:00
// See the LICENCE file in the repository root for full licence text.
2020-12-08 13:49:36 +08:00
using System;
using System.Runtime.Serialization;
using Microsoft.AspNetCore.SignalR;
2020-12-08 13:49:36 +08:00
2020-12-25 12:38:11 +08:00
namespace osu.Game.Online.Multiplayer
2020-12-08 13:49:36 +08:00
{
[Serializable]
public class NotJoinedRoomException : HubException
2020-12-08 13:49:36 +08:00
{
public NotJoinedRoomException()
: base("This user has not yet joined a multiplayer room.")
{
}
protected NotJoinedRoomException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
2020-12-08 13:49:36 +08:00
}
2020-12-08 20:15:10 +08:00
}