Jenssegers\Optimus\Exceptions\InvalidPrimeException::__construct PHP Method

__construct() public method

InvalidPrimeException constructor.
public __construct ( string $message = "", integer $code, Exception $previous = null )
$message string
$code integer
$previous Exception
    public function __construct($message = "", $code = 0, Exception $previous = null)
    {
        if ($message instanceof BigInteger) {
            $message = $message->toString();
        }
        parent::__construct($message, $code, $previous);
    }
InvalidPrimeException