This commit is contained in:
Xes
2025-08-14 22:39:38 +02:00
parent 3641e93527
commit 5403f346e3
3370 changed files with 327179 additions and 0 deletions

27
plugin/kannelsms/vendor/exception.php vendored Normal file
View File

@@ -0,0 +1,27 @@
<?php
/**
* Kannel PHP API
*
* @package Kannel
* @copyright Mediaburst Ltd 2012
* @license ISC
* @link http://www.kannelsms.com
*/
/*
* KannelException
*
* The Kannel wrapper class will throw these if a general error
* occurs with your request, for example, an invalid API key.
*
* @package Kannel
* @subpackage Exception
* @since 1.0
*/
class KannelException extends \Exception {
public function __construct( $message, $code = 0 ) {
// make sure everything is assigned properly
parent::__construct( $message, $code );
}
}