Ejemplo n.º 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;
 }
Ejemplo n.º 2
0
 internal void AddMessage(LocalizedFormats evaluations)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 3
0
 internal void AddMessage(LocalizedFormats pattern, params object[] args)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 4
0
 internal void AddMessage(LocalizedFormats specific, Number max, params object[] args)
 {
     throw new NotImplementedException();
 }
Ejemplo n.º 5
0
 protected internal MathIllegalNumberException(LocalizedFormats pattern, Number wrong, params object[] arguments) : base(pattern, wrong, arguments)
 {
     argument = wrong;
 }
Ejemplo n.º 6
0
 public MathIllegalStateException(Exception cause, LocalizedFormats pattern, params object[] args) : base("", cause)
 {
     context = new ExceptionContext(this);
     context.AddMessage(pattern, args);
 }
Ejemplo n.º 7
0
 public NotPositiveException(LocalizedFormats specific, Number value) : base(specific, value, INTEGER_ZERO, true)
 {
 }
Ejemplo n.º 8
0
 public MathIllegalArgumentException(LocalizedFormats pattern, params object[] args)
 {
     context = new ExceptionContext(this);
     context.AddMessage(pattern, args);
 }
Ejemplo n.º 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)
 {
 }