\Omega\Filesystem\Exception FileAlreadyExistsException

Exception to be thrown when a file already exists.

This exception is specifically designed to handle scenarios where an attempt is made to create or overwrite a file that already exists in the filesystem. It extends the RuntimeException, providing a clear indication that this error is due to an improper use of the filesystem operations.

Summary

Methods
Properties
Constants
__construct
No public properties found
No public constants found
No protected methods found
key
No protected constants found
No private methods found
No private properties found
No private constants found

Properties

$key

$key : string

Type

string

Methods

__construct()

__construct(string  $key, int  $code, \Exception|null  $previous = null) : mixed

Constructs a new FileAlreadyExistsException.

Parameters

string $key

The key (path) of the existing file.

int $code

The error code (default is 0).

\Exception|null $previous

The previous exception for exception chaining (default is null).

Returns

mixed —