e() public static method

Returns the Euler's E number.
public static e ( integer $scale = 32 ) : Decimal
$scale integer
return Decimal
 /**
  * @expectedException \InvalidArgumentException
  * @expectedExceptionMessage $scale must be positive.
  */
 public function testNegativeParamsOnE()
 {
     DecimalConstants::e(-3);
 }