tacnoman/dephpug

View on GitHub
src/Dephpug/Exception/QuitException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Dephpug\Exception;

class QuitException extends \Exception
{
    public function __construct($message, $code = 0, \Exception $previous = null)
    {
        parent::__construct($message, $code, $previous);
    }
}