for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php namespace Arcanedev\Assets\Exceptions;
/**
* Class DirectoryExistsException
*
* @package Arcanedev\Assets\Exceptions
* @author ARCANEDEV <[email protected]>
*/
class DirectoryExistsException extends \Exception
{
* @param string $path
* @throws \Exception
public static function throw($path)
throw new \Exception("The `{$path}` folder already exists`!");
}