2020-12-08 08:41:56 +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.
|
|
|
|
|
|
|
|
using System;
|
2020-12-09 05:46:43 +00:00
|
|
|
using System.Runtime.Serialization;
|
|
|
|
using Microsoft.AspNetCore.SignalR;
|
2020-12-08 08:41:56 +00:00
|
|
|
|
2020-12-25 04:38:11 +00:00
|
|
|
namespace osu.Game.Online.Multiplayer
|
2020-12-08 08:41:56 +00:00
|
|
|
{
|
2020-12-09 05:46:43 +00:00
|
|
|
[Serializable]
|
|
|
|
public class InvalidStateChangeException : HubException
|
2020-12-08 08:41:56 +00:00
|
|
|
{
|
2020-12-09 03:07:19 +00:00
|
|
|
public InvalidStateChangeException(MultiplayerUserState oldState, MultiplayerUserState newState)
|
2020-12-08 08:41:56 +00:00
|
|
|
: base($"Cannot change from {oldState} to {newState}")
|
|
|
|
{
|
|
|
|
}
|
2020-12-09 05:46:43 +00:00
|
|
|
|
|
|
|
protected InvalidStateChangeException(SerializationInfo info, StreamingContext context)
|
|
|
|
: base(info, context)
|
|
|
|
{
|
|
|
|
}
|
2020-12-08 08:41:56 +00:00
|
|
|
}
|
|
|
|
}
|