MathematicalArgumentException
using Autodesk.DesignScript.Runtime;
using System;
namespace DynamoUnits
{
[SupressImportIntoVM]
public class MathematicalArgumentException : Exception
{
public MathematicalArgumentException()
: base("The result could not be computed given the provided inputs.")
{
}
public MathematicalArgumentException(string message)
: base(message)
{
}
}
}