14 lines
326 B
C#
Executable File
14 lines
326 B
C#
Executable File
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace Commerce.Contracts.Exceptions;
|
|
public class NotFoundException : Exception
|
|
{
|
|
public NotFoundException(string message, Exception innerException) : base(message, innerException)
|
|
{
|
|
|
|
}
|
|
}
|