mautic / plugins /MauticSocialBundle /Exception /ExitMonitorException.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
<?php
namespace MauticPlugin\MauticSocialBundle\Exception;
class ExitMonitorException extends \Exception
{
public function __construct($message = 'Exit monitor requested', $code = 0, \Exception $previous = null)
{
parent::__construct($message, $code, $previous);
}
}