PHP Classes

File: src/Utils/Config/Exception/Data.php

Recommend this page to a friend!
  Classes of Thierry Feuzeu   Jaxon   src/Utils/Config/Exception/Data.php   Download  
File: src/Utils/Config/Exception/Data.php
Role: Class source
Content type: text/plain
Description: Class source
Class: Jaxon
Call PHP classes from JavaScript using AJAX
Author: By
Last change:
Date: 4 years ago
Size: 562 bytes
 

Contents

Class file image Download
<?php

/**
 * Data.php - Incorrect config data exception
 *
 * This exception is thrown when config data are incorrect.
 *
 * @package jaxon-core
 * @author Thierry Feuzeu <thierry.feuzeu@gmail.com>
 * @copyright 2016 Thierry Feuzeu <thierry.feuzeu@gmail.com>
 * @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
Data extends \Exception
{
    public function
__construct($sMessage)
    {
       
parent::__construct($sMessage);
    }
}