11 lines
196 B
C#
11 lines
196 B
C#
|
using System;
|
|||
|
|
|||
|
namespace SharedLibraryCore.Exceptions
|
|||
|
{
|
|||
|
public class RConException : Exception
|
|||
|
{
|
|||
|
public RConException(string message) : base(message)
|
|||
|
{
|
|||
|
}
|
|||
|
}
|
|||
|
}
|