MathematicalArgumentException
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 MathematicalArgumentException : Exception
{
public MathematicalArgumentException()
: base("The result could not be computed given the provided inputs.")
{
}
public MathematicalArgumentException(string message)
: base(message)
{
}
}
}