1
0
mirror of https://github.com/ppy/osu.git synced 2026-05-16 12:23:02 +08:00
Files
osu-lazer/osu.Game/Online/Multiplayer/InvalidPasswordException.cs
T
2025-03-09 10:20:11 +09:00

18 lines
435 B
C#

// 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 Microsoft.AspNetCore.SignalR;
namespace osu.Game.Online.Multiplayer
{
[Serializable]
public class InvalidPasswordException : HubException
{
public InvalidPasswordException()
: base("Invalid password")
{
}
}
}