for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
/**
* slince config library
* @author Tao <[email protected]>
*/
namespace Slince\Config\Exception;
class UnsupportedFormatException extends \Exception
{
public function __construct($extension)
parent::__construct(sprintf('Unsupported configuration file format [%s]', $extension));
}