kronostechnologies/graphql-framework

View on GitHub
src/Kronos/GraphQLFramework/Utils/Reflection/Exception/NoClassNameFoundException.php

Summary

Maintainability
A
0 mins
Test Coverage
<?php


namespace Kronos\GraphQLFramework\Utils\Reflection\Exception;


use Kronos\GraphQLFramework\Exception\FrameworkException;
use Throwable;

class NoClassNameFoundException extends FrameworkException
{
    const MSG = 'No class name was found in the active buffer.';

    public function __construct(Throwable $previous = null)
    {
        parent::__construct(self::MSG, 0, $previous);
    }
}