2020-12-08 14:49:36 +09: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 15:59:13 +09:00
|
|
|
|
using Microsoft.AspNetCore.SignalR;
|
2020-12-08 14:49:36 +09:00
|
|
|
|
|
2020-12-25 13:38:11 +09:00
|
|
|
|
namespace osu.Game.Online.Multiplayer
|
2020-12-08 14:49:36 +09:00
|
|
|
|
{
|
2020-12-09 15:59:13 +09:00
|
|
|
|
[Serializable]
|
|
|
|
|
public class InvalidStateException : HubException
|
2020-12-08 14:49:36 +09:00
|
|
|
|
{
|
|
|
|
|
public InvalidStateException(string message)
|
|
|
|
|
: base(message)
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|