MathematicalArgumentException
using Autodesk.DesignScript.Runtime;
using System;
namespace DynamoUnits
{
[SupressImportIntoVM]
[Obsolete("This exception will be removed in a future version of Dynamo - please use the Unit.Utilities class and associated methods")]
public class MathematicalArgumentException : Exception
{
public MathematicalArgumentException()
: base("The result could not be computed given the provided inputs.")
{
}
public MathematicalArgumentException(string message)
: base(message)
{
}
}
}