for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace CorpSoft\Fixture\Exceptions;
use Exception;
/**
* Class InvalidConfigException represents an exception caused by incorrect object configuration.
*
* @package CorpSoft\Fixture\Exceptions
*/
class InvalidConfigException extends Exception
{
* @return string the user-friendly name of this exception
public function getName()
return 'Invalid Configuration';
}