cassell/Parm

View on GitHub
src/Exception/UpdateFailedException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Parm\Exception;

class UpdateFailedException extends ErrorException
{
    public function __construct($sql)
    {
        parent::__construct("Update failed using sql: " . $sql, null, E_USER_ERROR);
    }
}