PHP Classes

File: src/Exception/Error.php

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

Contents

Class file image Download
<?php

/**
 * Error.php - Jaxon error
 *
 * This exception is thrown when a generic error occurs.
 *
 * @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\Exception;

use
Exception;

class
Error extends Exception
{
    public function
__construct($sMessage)
    {
       
parent::__construct($sMessage);
    }
}