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:
-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;