Наследование: System.ArithmeticException
Пример #1
0
        internal static TrapException Create(ETrapException ete)
        {
            var ex = new TrapException();

            ex.ete = ete;
            return(ex);
        }
Пример #2
0
 public static ExtendedFloat FromString(
     string str,
     int offset,
     int length,
     PrecisionContext ctx)
 {
     try {
         return(new ExtendedFloat(
                    EFloat.FromString(
                        str,
                        offset,
                        length,
                        ctx == null ? null : ctx.Ec)));
     } catch (ETrapException ex) {
         throw TrapException.Create(ex);
     }
 }
Пример #3
0
 internal static TrapException Create(ETrapException ete)
 {
     var ex = new TrapException();
       ex.ete = ete;
       return ex;
 }