2019-01-24 08:43:03 +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.
|
2018-04-13 09:19:50 +00:00
|
|
|
|
2022-06-17 07:37:17 +00:00
|
|
|
#nullable disable
|
|
|
|
|
2017-05-15 04:26:35 +00:00
|
|
|
namespace osu.Game.Online.Chat
|
|
|
|
{
|
2017-09-22 13:30:07 +00:00
|
|
|
public class ErrorMessage : InfoMessage
|
2017-05-15 04:26:35 +00:00
|
|
|
{
|
2019-02-28 04:31:40 +00:00
|
|
|
public ErrorMessage(string message)
|
|
|
|
: base(message)
|
2017-05-15 04:26:35 +00:00
|
|
|
{
|
2019-08-08 08:10:06 +00:00
|
|
|
// todo: this should likely be styled differently in the future.
|
2017-05-15 04:26:35 +00:00
|
|
|
}
|
|
|
|
}
|
2017-09-22 13:30:07 +00:00
|
|
|
}
|