Files
cms-core-active/CMS_CORE_Library/Exceptions/Nc_Exception.cs
T
Lucio Maranta e14a8cc30e Refactor models
2018-09-27 16:00:05 +00:00

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)
{
}
}
}