for testing and deploying your application
for finding and fixing issues
for empowering human code reviews
<?php
namespace Apie\FileStoragePlugin\Exceptions;
use Apie\Core\Exceptions\ApieException;
class CouldNotMakeDirectoryException extends ApieException
{
public function __construct(string $filename)
parent::__construct(503, 'Could not make directory "' . $filename . '""');
}