Files
cms-core-active/CMS_CORE_Library/Exceptions/Nc_Exception.cs
T
2020-06-22 09:21:13 +02:00

12 lines
205 B
C#

using System;
namespace CMS_CORE_Library.Exceptions
{
public class Nc_Exception : Exception
{
public Nc_Exception(string message) : base(message)
{
}
}
}