19 lines
440 B
C#
19 lines
440 B
C#
namespace EnVisage.Code.Exceptions
|
|
{
|
|
using System;
|
|
|
|
public class InvalidTransactionException : Exception
|
|
{
|
|
public InvalidTransactionException(string transactionId)
|
|
: base($"Transaction {transactionId} does no exist in the audit cache")
|
|
{
|
|
|
|
}
|
|
|
|
public InvalidTransactionException(string message, Exception exception)
|
|
: base(message, exception)
|
|
{
|
|
|
|
}
|
|
}
|
|
} |