From 10cce187a4bcbe6af8018734732c19bf33fcfbee Mon Sep 17 00:00:00 2001 From: Thomas S Hatch Date: Thu, 1 Mar 2012 10:17:16 -0700 Subject: [PATCH] Add salt master error --- salt/exceptions.py | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/salt/exceptions.py b/salt/exceptions.py index 79ebe28921..0f2e1d7fb5 100644 --- a/salt/exceptions.py +++ b/salt/exceptions.py @@ -14,6 +14,12 @@ class SaltClientError(SaltException): ''' pass +class SaltMasterError(SaltException): + ''' + Problem reading the master root key + ''' + pass + class AuthenticationError(SaltException): ''' If sha256 signature fails during decryption