12 lines
205 B
C#
12 lines
205 B
C#
using System;
|
|
|
|
namespace CMS_CORE_Library.Exceptions
|
|
{
|
|
public class Nc_Exception : Exception
|
|
{
|
|
public Nc_Exception(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|