Merge "Storage exceptions should inherit TuskarException"

This commit is contained in:
Jenkins 2014-08-25 14:28:36 +00:00 committed by Gerrit Code Review
commit f2000d43f0

View File

@ -12,8 +12,10 @@
# License for the specific language governing permissions and limitations
# under the License.
from tuskar.common import exception
class StorageException(Exception):
class StorageException(exception.TuskarException):
pass