Modified:
/trunk/boto/exception.py
=======================================
--- /trunk/boto/exception.py Fri Sep 25 14:13:27 2009
+++ /trunk/boto/exception.py Mon Oct 26 19:16:14 2009
@@ -28,7 +28,7 @@
import xml.sax
-class BotoClientError(Exception):
+class BotoClientError(StandardError):
"""
General Boto Client error (error accessing AWS)
"""
@@ -42,7 +42,7 @@
def __str__(self):
return 'S3Error: %s' % self.reason
-class SDBPersistenceError(Exception):
+class SDBPersistenceError(StandardError):
pass
@@ -52,7 +52,7 @@
"""
pass
-class BotoServerError(Exception):
+class BotoServerError(StandardError):
def __init__(self, status, reason, body=None):
self.status = status