PATH:
home
/
rwabteecom
/
public_html
/
vendor
/
saloonphp
/
saloon
/
src
/
Exceptions
/
Editing: UnableToCreateDirectoryException.php
<?php declare(strict_types=1); namespace Saloon\Exceptions; class UnableToCreateDirectoryException extends SaloonException { /** * Constructor */ public function __construct(string $directory) { parent::__construct(sprintf('Unable to create the directory: %s.', $directory)); } }
SAVE
CANCEL