osu/osu.Game/Online/Multiplayer/NotJoinedRoomException.cs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

24 lines
642 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;
using System.Runtime.Serialization;
using Microsoft.AspNetCore.SignalR;
2020-12-08 05:49:36 +00:00
2020-12-25 04:38:11 +00:00
namespace osu.Game.Online.Multiplayer
2020-12-08 05:49:36 +00:00
{
[Serializable]
public class NotJoinedRoomException : HubException
2020-12-08 05:49:36 +00: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 05:49:36 +00:00
}
2020-12-08 12:15:10 +00:00
}