1
0
mirror of https://github.com/ZetaKebab/MpcNET.git synced 2025-07-01 00:37:37 +00:00
Files
MpcNET/Sources/MpcNET/Exceptions/CommandNullException.cs
2018-03-02 12:14:26 +01:00

20 lines
823 B
C#

// --------------------------------------------------------------------------------------------------------------------
// <copyright file="CommandNullException.cs" company="Hukano">
// Copyright (c) Hukano. All rights reserved.
// Licensed under the MIT license. See LICENSE file in the project root for full license information.
// </copyright>
// --------------------------------------------------------------------------------------------------------------------
namespace MpcNET.Exceptions
{
/// <summary>
/// Thrown by <see cref="MpcConnection"/> when the command is null.
/// </summary>
/// <seealso cref="System.Exception" />
public class CommandNullException : MpcException
{
internal CommandNullException()
: base("No command was specified")
{
}
}
}