eloquent/pathogen API
Class

Eloquent\Pathogen\Windows\Exception\DriveMismatchException

class DriveMismatchException extends Exception

The drive specifiers of the two paths do not match.

Methods

__construct(string $leftDrive, string $rightDrive, Exception $previous = null)

Constructs a new drive specifier mismatch exception.

string leftDrive()

Get the left-hand drive specifier.

string rightDrive()

Get the right-hand drive specifier.

Details

at line 28
public __construct(string $leftDrive, string $rightDrive, Exception $previous = null)

Constructs a new drive specifier mismatch exception.

Parameters

string $leftDrive The left-hand drive specifier.
string $rightDrive The right-hand drive specifier.
Exception $previous The cause, if available.

at line 52
public string leftDrive()

Get the left-hand drive specifier.

Return Value

string The left-hand drive specifier.

at line 62
public string rightDrive()

Get the right-hand drive specifier.

Return Value

string The right-hand drive specifier.