2020-12-08 18:06:08 +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.
|
|
|
|
|
|
|
|
using System;
|
2020-12-09 13:46:43 +08:00
|
|
|
using System.Runtime.Serialization;
|
|
|
|
using Microsoft.AspNetCore.SignalR;
|
2020-12-08 18:06:08 +08:00
|
|
|
|
2020-12-25 12:38:11 +08:00
|
|
|
namespace osu.Game.Online.Multiplayer
|
2020-12-08 18:06:08 +08:00
|
|
|
{
|
2020-12-09 13:46:43 +08:00
|
|
|
[Serializable]
|
|
|
|
public class NotHostException : HubException
|
2020-12-08 18:06:08 +08:00
|
|
|
{
|
|
|
|
public NotHostException()
|
|
|
|
: base("User is attempting to perform a host level operation while not the host")
|
|
|
|
{
|
|
|
|
}
|
2020-12-09 13:46:43 +08:00
|
|
|
|
|
|
|
protected NotHostException(SerializationInfo info, StreamingContext context)
|
|
|
|
: base(info, context)
|
|
|
|
{
|
|
|
|
}
|
2020-12-08 18:06:08 +08:00
|
|
|
}
|
|
|
|
}
|