20 lines
353 B
PHP
20 lines
353 B
PHP
<?php
|
|
/**
|
|
* Class Przelewy24HttpException
|
|
*
|
|
* @author Przelewy24
|
|
* @copyright Przelewy24
|
|
* @license https://www.gnu.org/licenses/lgpl-3.0.en.html
|
|
*/
|
|
if (!defined('_PS_VERSION_')) {
|
|
exit;
|
|
}
|
|
|
|
/**
|
|
* Class to represent exception to be converted to HTTP responses.
|
|
*/
|
|
class Przelewy24HttpException extends Exception
|
|
{
|
|
/* Nothing to add. */
|
|
}
|