mirror of
https://github.com/chylex/Nextcloud-News.git
synced 2025-05-12 07:34:05 +02:00
28 lines
579 B
PHP
28 lines
579 B
PHP
<?php
|
|
/**
|
|
* Nextcloud - News
|
|
*
|
|
* 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
|
|
*/
|
|
|
|
namespace OCA\News\Config;
|
|
|
|
class DependencyException extends \Exception {
|
|
|
|
|
|
/**
|
|
* Constructor
|
|
* @param string $msg the error message
|
|
*/
|
|
public function __construct($msg){
|
|
parent::__construct($msg);
|
|
}
|
|
|
|
|
|
} |