| 
<?php
 /**
 * Yaml.php - Yaml-specific exception.
 *
 * This exception is thrown when an error related to Yaml occurs.
 * A typical example is when the php-yaml package is not installed.
 *
 * @package jaxon-core
 * @author Thierry Feuzeu <[email protected]>
 * @copyright 2016 Thierry Feuzeu <[email protected]>
 * @license https://opensource.org/licenses/BSD-3-Clause BSD 3-Clause License
 * @link https://github.com/jaxon-php/jaxon-core
 */
 
 namespace Jaxon\Utils\Config\Exception;
 
 class Yaml extends \Exception
 {
 public function __construct($sMessage)
 {
 parent::__construct($sMessage);
 }
 }
 
 |