chris-kruining/utilities

View on GitHub
src/Common/Exceptions/NotImplemented.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php

namespace CPB\Utilities\Common\Exceptions
{
    class NotImplemented extends \Exception
    {
        public function __construct(\Throwable $previous = null)
        {
            parent::__construct(
                'The code being called does not offer an implementation',
                0,
                $previous
            );
        }
    }
}