nevermore-kang's picture
Upload folder using huggingface_hub
18a519f verified
Raw
History Blame Contribute Delete
236 Bytes
using System;
namespace Unity.VisualScripting
{
public sealed class MissingValuePortInputException : Exception
{
public MissingValuePortInputException(string key) : base($"Missing input value for '{key}'.") { }
}
}