Initial commit: CloudOps infrastructure platform

This commit is contained in:
root
2026-04-09 19:58:57 +02:00
commit 1166a52f26
7762 changed files with 839452 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
<?php
namespace Mautic\SmsBundle\Exception;
class CallbackHandlerNotFound extends \Exception
{
}

View File

@@ -0,0 +1,32 @@
<?php
namespace Mautic\SmsBundle\Exception;
class NumberNotFoundException extends \Exception
{
/**
* @param string $number
* @param string $message
* @param int $code
*/
public function __construct(
private $number,
$message = '',
$code = 0,
?\Throwable $previous = null,
) {
if (!$message) {
$message = "Phone number '{$number}' not found";
}
parent::__construct($message, $code, $previous);
}
/**
* @return string
*/
public function getNumber()
{
return $this->number;
}
}

View File

@@ -0,0 +1,7 @@
<?php
namespace Mautic\SmsBundle\Exception;
class PrimaryTransportNotEnabledException extends \Exception
{
}