for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* AppException.php - Jaxon app exception
*
* This exception is thrown when an error occurs in the application.
* @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 AppException extends Exception
{
}