brokencube/circuit

View on GitHub
src/Exception/UncaughtException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace Circuit\Exception;

class UncaughtException extends Exception
{
    public function __construct(\Throwable $previous)
    {
        parent::__construct('Uncaught Exception', null, $previous, 500);
    }
}