2020-12-08 13:49:36 +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 14:59:13 +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 14:59:13 +08:00
|
|
|
[Serializable]
|
|
|
|
public class InvalidStateException : HubException
|
2020-12-08 13:49:36 +08:00
|
|
|
{
|
|
|
|
public InvalidStateException(string message)
|
|
|
|
: base(message)
|
|
|
|
{
|
|
|
|
}
|
2020-12-09 14:59:13 +08:00
|
|
|
|
|
|
|
protected InvalidStateException(SerializationInfo info, StreamingContext context)
|
|
|
|
: base(info, context)
|
|
|
|
{
|
|
|
|
}
|
2020-12-08 13:49:36 +08:00
|
|
|
}
|
|
|
|
}
|