summaryrefslogtreecommitdiffstats
path: root/lib/Service/ServiceNotFoundException.php
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Service/ServiceNotFoundException.php')
-rw-r--r--lib/Service/ServiceNotFoundException.php15
1 files changed, 9 insertions, 6 deletions
diff --git a/lib/Service/ServiceNotFoundException.php b/lib/Service/ServiceNotFoundException.php
index f7524b44b..5c831775b 100644
--- a/lib/Service/ServiceNotFoundException.php
+++ b/lib/Service/ServiceNotFoundException.php
@@ -5,22 +5,25 @@
* This file is licensed under the Affero General Public License version 3 or
* later. See the COPYING file.
*
- * @author Alessandro Cosentino <cosenal@gmail.com>
- * @author Bernhard Posselt <dev@bernhard-posselt.com>
- * @copyright Alessandro Cosentino 2012
- * @copyright Bernhard Posselt 2012, 2014
+ * @author Alessandro Cosentino <cosenal@gmail.com>
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright 2012 Alessandro Cosentino
+ * @copyright 2012-2014 Bernhard Posselt
*/
namespace OCA\News\Service;
-class ServiceNotFoundException extends ServiceException {
+class ServiceNotFoundException extends ServiceException
+{
/**
* Constructor
+ *
* @param string $msg the error message
*/
- public function __construct($msg){
+ public function __construct($msg)
+ {
parent::__construct($msg);
}