First off you need to import the exceptions: Import psycopg Then catch with something like: try: result=self.sql.search(query) except psycopg.IntegrityError: doSomething() Hope that helps Andrew