示例#1
0
 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;
 }
示例#2
0
 internal void AddMessage(LocalizedFormats evaluations)
 {
     throw new NotImplementedException();
 }
示例#3
0
 internal void AddMessage(LocalizedFormats pattern, params object[] args)
 {
     throw new NotImplementedException();
 }
示例#4
0
 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);
 }
示例#7
0
 public NotPositiveException(LocalizedFormats specific, Number value) : base(specific, value, INTEGER_ZERO, true)
 {
 }
示例#8
0
 public MathIllegalArgumentException(LocalizedFormats pattern, params object[] args)
 {
     context = new ExceptionContext(this);
     context.AddMessage(pattern, args);
 }
示例#9
0
 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)
 {
 }