diff --git a/src/Cloud/Decorator/HtmlCloud.php b/src/Cloud/Decorator/HtmlCloud.php
index b57100c..0f54a9a 100644
--- a/src/Cloud/Decorator/HtmlCloud.php
+++ b/src/Cloud/Decorator/HtmlCloud.php
@@ -122,13 +122,13 @@ public function getSeparator()
* Defined by Zend\Tag\Cloud\Decorator\Cloud
*
* @param array $tags
- * @throws InvalidArgumentException
+ * @throws Exception\InvalidArgumentException
* @return string
*/
public function render($tags)
{
if (!is_array($tags)) {
- throw new InvalidArgumentException(sprintf(
+ throw new Exception\InvalidArgumentException(sprintf(
'HtmlCloud::render() expects an array argument; received "%s"',
(is_object($tags) ? get_class($tags) : gettype($tags))
));