Skip to content
Snippets Groups Projects
Commit aaf82323 authored by Sergio Gomez's avatar Sergio Gomez
Browse files

Removed unnecessary exception

parent 8eaf60b1
No related branches found
No related tags found
No related merge requests found
......@@ -8,7 +8,6 @@
namespace SimpleSAML\Utils;
use SimpleSAML\Logger;
use Symfony\Component\Config\Definition\Exception\Exception;
class XML
{
......@@ -405,7 +404,7 @@ class XML
try {
$dom = \SAML2_DOMDocumentFactory::fromString($xml);
$res = true;
} catch (Exception $e) {
} catch (\Exception $e) {
$res = false;
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment