17 lines
483 B
C#
17 lines
483 B
C#
using System;
|
|
using NodePipeline.Constants.Exceptions;
|
|
|
|
// ReSharper disable UnusedAutoPropertyAccessor.Global
|
|
|
|
namespace NodePipeline.Abstractions.Exceptions.Validation;
|
|
|
|
public class UserDefinedNodeValidatorNotFoundException : Exception
|
|
{
|
|
public UserDefinedNodeValidatorNotFoundException(string validatorType)
|
|
: base(NodeValidation.UserDefinedNodeValidatorNotFoundException)
|
|
{
|
|
ValidatorType = validatorType;
|
|
}
|
|
|
|
public string ValidatorType { get; }
|
|
} |