Amp\Mysql\ConnectionPool::useExceptions PHP Method

useExceptions() public method

public useExceptions ( $set )
    public function useExceptions($set)
    {
        $this->config->exceptions = $set;
        foreach ($this->connections as $conn) {
            $conn->useExceptions($set);
        }
    }