for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* Exception.php - Jaxon exception
*
* This is the generic exception.
* @package jaxon-core
* @author Thierry Feuzeu <[email protected]>
* @copyright 2022 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\Exception;
class Exception extends \Exception
{
public function __construct(string $sMessage)
parent::__construct($sMessage);
}