12 lines
254 B
C#
12 lines
254 B
C#
using System;
|
|
|
|
namespace BasicDotnetTemplate.MainProject.Models.Api.Common.Exceptions;
|
|
|
|
public class CreateException : Exception
|
|
{
|
|
public CreateException(string message, Exception innerException)
|
|
: base(message, innerException)
|
|
{
|
|
}
|
|
}
|