arkaitzgarro/elastic-apm-laravel

View on GitHub
src/Exception/MissingAppConfigurationException.php

Summary

Maintainability
A
0 mins
Test Coverage
A
100%
<?php

namespace AG\ElasticApmLaravel\Exception;

class MissingAppConfigurationException extends ElasticApmLaravelException
{
    public function __construct(int $code = 0, ?\Throwable $previous = null)
    {
        parent::__construct('Use AgentBuilder::withAppConfig() to provide a configuration object.', $code, $previous);
    }
}