2020-12-09 11:17:37 +08: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.
|
|
|
|
|
2022-06-17 15:37:17 +08:00
|
|
|
#nullable disable
|
|
|
|
|
2020-12-08 13:49:36 +08:00
|
|
|
using System;
|
2020-12-09 13:46:43 +08:00
|
|
|
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
|
|
|
{
|
2020-12-09 13:46:43 +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.")
|
|
|
|
{
|
|
|
|
}
|
2020-12-09 13:46:43 +08:00
|
|
|
|
|
|
|
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
|
|
|
}
|