aboutsummaryrefslogtreecommitdiffstats
path: root/python_moonutilities/python_moonutilities/cache.py
diff options
context:
space:
mode:
Diffstat (limited to 'python_moonutilities/python_moonutilities/cache.py')
-rw-r--r--python_moonutilities/python_moonutilities/cache.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/python_moonutilities/python_moonutilities/cache.py b/python_moonutilities/python_moonutilities/cache.py
index cfc24a56..851c5489 100644
--- a/python_moonutilities/python_moonutilities/cache.py
+++ b/python_moonutilities/python_moonutilities/cache.py
@@ -153,7 +153,7 @@ class Cache(object):
if 'actions' in response.json():
self.__ACTIONS[policy_id] = response.json()['actions']
else:
- raise exceptions.ObjectUnknown("Cannot find action within policy_id {}".format(policy_id))
+ raise exceptions.ActionUnknown("Cannot find action within policy_id {}".format(policy_id))
def get_action(self, policy_id, name):
if not policy_id: