public NoBracketingException(LocalizedFormats specific, double lo, double hi, double fLo, double fHi, params object[] args) : base(specific, Convert.ToDouble(lo), Convert.ToDouble(hi), Convert.ToDouble(fLo), Convert.ToDouble(fHi), args) { this.lo = lo; this.hi = hi; this.fLo = fLo; this.fHi = fHi; }
internal void AddMessage(LocalizedFormats evaluations) { throw new NotImplementedException(); }
internal void AddMessage(LocalizedFormats pattern, params object[] args) { throw new NotImplementedException(); }
internal void AddMessage(LocalizedFormats specific, Number max, params object[] args) { throw new NotImplementedException(); }
protected internal MathIllegalNumberException(LocalizedFormats pattern, Number wrong, params object[] arguments) : base(pattern, wrong, arguments) { argument = wrong; }
public MathIllegalStateException(Exception cause, LocalizedFormats pattern, params object[] args) : base("", cause) { context = new ExceptionContext(this); context.AddMessage(pattern, args); }
public NotPositiveException(LocalizedFormats specific, Number value) : base(specific, value, INTEGER_ZERO, true) { }
public MathIllegalArgumentException(LocalizedFormats pattern, params object[] args) { context = new ExceptionContext(this); context.AddMessage(pattern, args); }
public DimensionMismatchException(LocalizedFormats specific, int wrong, int expected) : base(specific, Convert.ToInt32(wrong), Convert.ToInt32(expected)) { dimension = expected; }
public NotStrictlyPositiveException(LocalizedFormats specific, Number value) : base(specific, value, INTEGER_ZERO, false) { }