for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace TomPHP\ContainerConfigurator\Exception;
use LogicException;
use TomPHP\ExceptionConstructorTools;
final class ReadOnlyException extends LogicException implements Exception
{
use ExceptionConstructorTools;
/**
* @internal
*
* @param string $name
* @return self
*/
public static function fromClassName($name)
return self::create('"%s" is read only.', [$name]);
}