cassell/Parm

View on GitHub
src/Exception/ErrorException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Parm\Exception;

class ErrorException extends \ErrorException
{
    public function __construct($message)
    {
        parent::__construct($message, null, E_USER_ERROR);
    }
}