Remove sensible information from exception message

Signed-off-by: Morris Jobke <hey@morrisjobke.de>
This commit is contained in:
Morris Jobke 2016-10-24 11:32:17 +02:00
parent 19ad058d06
commit 169faf8c32
No known key found for this signature in database
GPG Key ID: 9CE5ED29E7FCD38A
1 changed files with 6 additions and 6 deletions

View File

@ -42,7 +42,7 @@ class Folder extends Node implements \OCP\Files\Folder {
*/
public function getFullPath($path) {
if (!$this->isValidPath($path)) {
throw new NotPermittedException('Invalid path: ' . $path);
throw new NotPermittedException('Invalid path');
}
return $this->path . $this->normalizePath($path);
}
@ -152,7 +152,7 @@ class Folder extends Node implements \OCP\Files\Folder {
$this->root->emit('\OC\Files', 'postCreate', array($node));
return $node;
} else {
throw new NotPermittedException('No create permission for folder ' . $this->getFullPath($path));
throw new NotPermittedException('No create permission for folder');
}
}
@ -173,7 +173,7 @@ class Folder extends Node implements \OCP\Files\Folder {
$this->root->emit('\OC\Files', 'postCreate', array($node));
return $node;
} else {
throw new NotPermittedException('No create permission for path ' . $this->getFullPath($path));
throw new NotPermittedException('No create permission for path');
}
}
@ -321,7 +321,7 @@ class Folder extends Node implements \OCP\Files\Folder {
$this->root->emit('\OC\Files', 'postDelete', array($nonExisting));
$this->exists = false;
} else {
throw new NotPermittedException('No delete permission for path ' . $this->getFullPath($this->path));
throw new NotPermittedException('No delete permission for path');
}
}
@ -343,7 +343,7 @@ class Folder extends Node implements \OCP\Files\Folder {
$this->root->emit('\OC\Files', 'postWrite', array($targetNode));
return $targetNode;
} else {
throw new NotPermittedException('No permission to copy to path ' . $targetPath);
throw new NotPermittedException('No permission to copy to path');
}
}
@ -366,7 +366,7 @@ class Folder extends Node implements \OCP\Files\Folder {
$this->path = $targetPath;
return $targetNode;
} else {
throw new NotPermittedException('No permission to move to path ' . $targetPath);
throw new NotPermittedException('No permission to move to path');
}
}