mautic / app /bundles /CoreBundle /Exception /SchemaException.php
chrisbryan17's picture
Upload folder using huggingface_hub
d2897cd verified
raw
history blame contribute delete
280 Bytes
<?php
namespace Mautic\CoreBundle\Exception;
class SchemaException extends \Exception
{
public function __construct($message = 'Could not perform schema change.', $code = 0, \Exception $previous = null)
{
parent::__construct($message, $code, $previous);
}
}