mirror of
https://codeberg.org/icewind/SMB.git
synced 2026-06-04 01:34:07 +02:00
38 lines
929 B
PHP
38 lines
929 B
PHP
<?php
|
|
/**
|
|
* Copyright (c) 2014 Robin Appelman <icewind@owncloud.com>
|
|
* This file is licensed under the Licensed under the MIT license:
|
|
* http://opensource.org/licenses/MIT
|
|
*/
|
|
|
|
namespace Icewind\SMB\Exception;
|
|
|
|
class Exception extends \Exception {
|
|
public static function unknown($path, $error) {
|
|
$message = 'Unknown error (' . $error . ')';
|
|
if ($path) {
|
|
$message .= ' for ' . $path;
|
|
}
|
|
|
|
return new Exception($message, is_string($error) ? 0 : $error);
|
|
}
|
|
|
|
/**
|
|
* @param array $exceptionMap
|
|
* @param mixed $error
|
|
* @param string $path
|
|
* @return Exception
|
|
*/
|
|
public static function fromMap(array $exceptionMap, $error, $path) {
|
|
if (isset($exceptionMap[$error])) {
|
|
$exceptionClass = $exceptionMap[$error];
|
|
if (is_numeric($error)) {
|
|
return new $exceptionClass($path, $error);
|
|
} else {
|
|
return new $exceptionClass($path);
|
|
}
|
|
} else {
|
|
return Exception::unknown($path, $error);
|
|
}
|
|
}
|
|
}
|