From 8b0df6c9f782f42e09c74e0ef1c7af59e754b2a1 Mon Sep 17 00:00:00 2001
From: Alexander Klimov <alexander.klimov@netways.de>
Date: Wed, 27 Aug 2014 16:29:56 +0200
Subject: [PATCH] UnsupportedBackendException: extend IcingaException

refs #6931
---
 .../Monitoring/Exception/UnsupportedBackendException.php   | 7 ++++---
 1 file changed, 4 insertions(+), 3 deletions(-)

diff --git a/modules/monitoring/library/Monitoring/Exception/UnsupportedBackendException.php b/modules/monitoring/library/Monitoring/Exception/UnsupportedBackendException.php
index 3e1468e36..169fa2cfd 100644
--- a/modules/monitoring/library/Monitoring/Exception/UnsupportedBackendException.php
+++ b/modules/monitoring/library/Monitoring/Exception/UnsupportedBackendException.php
@@ -4,8 +4,9 @@
 
 
 namespace Icinga\Module\Monitoring\Exception;
-use Exception;
 
-class UnsupportedBackendException extends Exception
+use Icinga\Exception\IcingaException;
+
+class UnsupportedBackendException extends IcingaException
 {
-}
\ No newline at end of file
+}