?iť?

Your IP : 3.145.19.185


Current Path : /home/scgforma/www/cloud/apps/gallery/lib/Environment/
Upload File :
Current File : /home/scgforma/www/cloud/apps/gallery/lib/Environment/EnvironmentException.php

<?php
/**
 * Nextcloud - Gallery
 *
 * This file is licensed under the Affero General Public License version 3 or
 * later. See the COPYING file.
 *
 * @author Olivier Paroz <galleryapps@oparoz.com>
 *
 * @copyright Olivier Paroz 2017
 */

namespace OCA\Gallery\Environment;

use OCP\Util;

/**
 * Thrown when the Environment runs into a problem
 */
class EnvironmentException extends \Exception {

	/**
	 * Constructor
	 *
	 * @param string $msg the message contained in the exception
	 */
	public function __construct($msg) {
		Util::writeLog('gallery', 'Exception' . $msg, Util::ERROR);
		parent::__construct($msg);
	}
}