Files
cms-core-active/CMS_CORE_Library/Exceptions/Nc_Exception.cs
T
Nicola Carminati f535c6e5b4
2017-10-05 06:25:17 +00:00

16 lines
303 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CMS_CORE.Exceptions
{
public class Nc_Exception : Exception
{
public Nc_Exception(string message) : base(message)
{
}
}
}