mirror of
https://github.com/sbrl/Nibriboard.git
synced 2018-01-10 21:33:49 +00:00
19 lines
414 B
C#
19 lines
414 B
C#
using System;
|
|
namespace Nibriboard.Client.Messages
|
|
{
|
|
/// <summary>
|
|
/// Represents a complaint (usually by the server) about something that the other party
|
|
/// has done that probably shouldn't have.
|
|
/// </summary>
|
|
public class ErrorMessage : Message
|
|
{
|
|
/// <summary>
|
|
/// The message describing the error that has occurred.
|
|
/// </summary>
|
|
public string Message;
|
|
|
|
public ErrorMessage()
|
|
{
|
|
}
|
|
}
|
|
}
|