개요

자바의 try/catch 처럼 파이썬에서 Exception을 처리하는 방법을 찾아 본 뒤 정리해둔다.

패턴

def execute_s2_query(self, q, stage='alpha'):
    try:
        statement
    except Exception as e:
        self.logger.info(str(e))