UnitsException
using Autodesk.DesignScript.Runtime;
using System;
namespace DynamoUnits
{
[SupressImportIntoVM]
[Obsolete("This exception will be removed in Dynamo 3.0 - please use the Unit.Utilities class and associated methods")]
public class UnitsException : MathematicalArgumentException
{
public UnitsException(Type a, Type b)
: base($"{a}""{b}""")
{
}
}
}