16 lines
311 B
C#
16 lines
311 B
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace CMS_CORE_Library.Exceptions
|
|
{
|
|
public class Nc_Exception : Exception
|
|
{
|
|
public Nc_Exception(string message) : base(message)
|
|
{
|
|
}
|
|
}
|
|
}
|