2023-06-23 01:37:25 +09:00
|
|
|
|
// Copyright (c) ppy Pty Ltd <contact@ppy.sh>. Licensed under the MIT Licence.
|
2019-01-24 17:43:03 +09:00
|
|
|
|
// See the LICENCE file in the repository root for full licence text.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
|
|
|
|
|
namespace osu.Game.Online.Chat
|
|
|
|
|
{
|
|
|
|
|
public class ErrorMessage : InfoMessage
|
|
|
|
|
{
|
2019-02-28 13:31:40 +09:00
|
|
|
|
public ErrorMessage(string message)
|
|
|
|
|
: base(message)
|
2018-04-13 18:19:50 +09:00
|
|
|
|
{
|
2019-08-08 17:10:06 +09:00
|
|
|
|
// todo: this should likely be styled differently in the future.
|
2018-04-13 18:19:50 +09:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|