osu/osu.Game/Online/Multiplayer/InvalidStateException.cs

24 lines
610 B
C#
Raw Normal View History

2020-12-08 05:49:36 +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;
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 InvalidStateException : HubException
2020-12-08 05:49:36 +00:00
{
public InvalidStateException(string message)
: base(message)
{
}
protected InvalidStateException(SerializationInfo info, StreamingContext context)
: base(info, context)
{
}
2020-12-08 05:49:36 +00:00
}
}