6 lines
189 B
C#
6 lines
189 B
C#
namespace Tiku.Application.Backoffice;
|
|
|
|
public sealed class BackofficeException(string message, string code) : InvalidOperationException(message)
|
|
{
|
|
public string Code { get; } = code;
|
|
} |