DynamoVisualProgramming.DynamoServices by Autodesk

<PackageReference Include="DynamoVisualProgramming.DynamoServices" Version="2.13.0-beta2845" />

 NodeInternalException

using System; using System.Runtime.Serialization; namespace DynamoServices { [Serializable] public class NodeInternalException : Exception { public NodeInternalException() { } public NodeInternalException(string message) : base(message) { } public NodeInternalException(string message, Exception inner) : base(message, inner) { } protected NodeInternalException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }