/**
  * throws exceptions if $item is not numeric data
  *
  * this is a wrapper around our IsNumeric check
  *
  * @param  mixed $item
  *         the container to check
  * @param  string $exception
  *         the class to use when throwing an exception
  * @return void
  */
 public static function check($item, $exception = E4xx_UnsupportedType::class)
 {
     // make sure we have a stringy type
     if (!IsNumeric::check($item)) {
         throw new $exception(SimpleType::from($item));
     }
 }
 /**
  * @covers ::__invoke
  * @covers ::check
  * @dataProvider provideNumericData
  */
 public function testCanDetectNonBase10($data)
 {
     // ----------------------------------------------------------------
     // setup your test
     $obj = new IsNumeric();
     // ----------------------------------------------------------------
     // perform the change
     $actualResult1 = $obj($data);
     $actualResult2 = IsNumeric::check($data);
     // ----------------------------------------------------------------
     // test the results
     $this->assertTrue($actualResult1);
     $this->assertTrue($actualResult2);
 }