diff --git a/src/Common/Factory.php b/src/Common/Factory.php index 71abe5ec..2d365f63 100755 --- a/src/Common/Factory.php +++ b/src/Common/Factory.php @@ -341,7 +341,7 @@ protected function toNode() { $method_name = $this->method_name; if (!method_exists($this, $method_name)) { - throw new Exception("Erro interno método {$method_name} não localizado."); + throw new \Exception("Erro interno método {$method_name} não localizado."); } return $this->$method_name(); }