Code/Dependencies/DotNetGraph/Exceptions/AttributeNotFoundException.cs
using System;

namespace Nodebox.Dependencies.DotNetGraph.Exceptions {
    public class AttributeNotFoundException : Exception {
        public AttributeNotFoundException(string attributeName) : base($"There is no attribute named '{attributeName}'") {
        }
    }
}