DoubleOutOfRangeException Summary Represents a double out of range exception. Description Represents a double out of range exception. Examples Example of how this exception might be encountered 1234567891011import System;import System.Exceptions; try { // Range for `double` is -1.79769313486232e308 to 1.79769313486232e308 // 1e10000 is scientific notation for 1 x 10^10000 double x = Double.fromStringOrThrow("1e10000");}catch(DoubleOutOfRangeException e) { Console.error(e);} Methods DoubleOutOfRangeException (Constructor)Constructs a System.Exceptions.DoubleOutOfRangeException object. Share HTML | BBCode | Direct Link