def should_ignore(self, exception):  # type: (Exception) -> bool
     return self.ignore_classes is not None and \
         fully_qualified_class_name(exception) in self.ignore_classes
예제 #2
0
 def should_ignore(self, exception):
     return self.ignore_classes is not None and fully_qualified_class_name(exception) in self.ignore_classes
예제 #3
0
 def should_ignore(self, exception):  # type: (Exception) -> bool
     return self.ignore_classes is not None and \
         fully_qualified_class_name(exception) in self.ignore_classes