Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.mdns.eu/nextcloud/passwords-client.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarius David Wieschollek <passwords.public@mdns.eu>2021-01-09 17:39:29 +0300
committerMarius David Wieschollek <passwords.public@mdns.eu>2021-01-09 17:39:29 +0300
commit8d2e0e60dd6b1d033513b63ba2b0d7e2cde7a77a (patch)
tree184b4acebf97641a8b137740801a5a06d14db3e1
parentd59dff14b9f35adb4d84090f5684c96afbab2a5b (diff)
Correct error message
Signed-off-by: Marius David Wieschollek <passwords.public@mdns.eu>
-rw-r--r--src/Exception/UnknownPropertyError.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Exception/UnknownPropertyError.js b/src/Exception/UnknownPropertyError.js
index 0ff193d..c0d8f75 100644
--- a/src/Exception/UnknownPropertyError.js
+++ b/src/Exception/UnknownPropertyError.js
@@ -26,7 +26,7 @@ export default class UnknownPropertyError extends Error {
* @param {String} item
*/
constructor(property, item) {
- super(`Read access to unknown property ${property}`);
+ super(`Attempted access to unknown property ${property}`);
this._property = property;
this._item = item;