mautic / app /bundles /CoreBundle /Exception /MessageOnlyErrorHandlerException.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
224 Bytes
<?php
namespace Mautic\CoreBundle\Exception;
class MessageOnlyErrorHandlerException extends ErrorHandlerException
{
public function __construct($message = '')
{
parent::__construct($message, true);
}
}