public NullArgumentException(LocalizedFormats pattern, params object[] arguments) : base(pattern, arguments)
 {
 }
Example #2
0
 public ConvergenceException(LocalizedFormats pattern, params object[] args)
 {
     GetContext().AddMessage(pattern, args);
 }
Example #3
0
 public OutOfRangeException(LocalizedFormats specific, Number wrong, Number lo, Number hi) : base(specific, wrong, lo, hi)
 {
     this.lo = lo;
     this.hi = hi;
 }
Example #4
0
 public NoDataException(LocalizedFormats specific) : base(specific)
 {
 }
 public NotFiniteNumberException(LocalizedFormats specific, Number wrong, params object[] args) : base(specific, wrong, args)
 {
 }
Example #6
0
 public NumberIsTooLargeException(LocalizedFormats specific, Number wrong, Number max, bool boundIsAllowed) : base(specific, wrong, max)
 {
     this.max            = max;
     this.boundIsAllowed = boundIsAllowed;
 }
Example #7
0
 public MathArithmeticException(LocalizedFormats pattern, params object[] args)
 {
     context = new ExceptionContext(this);
     context.AddMessage(pattern, args);
 }
 public MaxCountExceededException(LocalizedFormats specific, Number max, params object[] args)
 {
     GetContext().AddMessage(specific, max, args);
     this.max = max;
 }
Example #9
0
 public InsufficientDataException(LocalizedFormats pattern, params object[] arguments) : base(pattern, arguments)
 {
 }
Example #10
0
 public MultiDimensionMismatchException(LocalizedFormats specific, int[] wrong, int[] expected) : base(specific, wrong, expected)
 {
     this.wrong    = (int[])wrong.Clone();
     this.expected = (int[])expected.Clone();
 }
 public MathUnsupportedOperationException(LocalizedFormats pattern, params object[] args)
 {
     context = new ExceptionContext(this);
     context.AddMessage(pattern, args);
 }
Example #12
0
 public NumberIsTooSmallException(LocalizedFormats specific, Number wrong, Number min, bool boundIsAllowed) : base(specific, wrong, min)
 {
     this.min            = min;
     this.boundIsAllowed = boundIsAllowed;
 }
Example #13
0
 public ZeroException(LocalizedFormats specific, params object[] arguments) : base(specific, INTEGER_ZERO, arguments)
 {
 }