Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • Home
  • SEARCH
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 5971847
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 22, 20262026-05-22T20:34:29+00:00 2026-05-22T20:34:29+00:00

I have a python class with many methods(): Method1() Method2() ……….. ……….. MethodN() All

  • 0

I have a python class with many methods():

Method1()

Method2()

………..

………..

MethodN()

All methods — while performing different tasks — have the same scheme:

do something
do something else
has anything gone wrong?
    raise an exception

I want to be able to get an email whenever an exception is raised anywhere in the class.

Is there some easy way to combine this logic into the class, rather than calling SendEmail() before every raise Exception statement? what is the right, pythonic way to deal with such a case? canh a ‘generalized’ Exception handler be the solution? I’d be glad for any ideas you may have.

  • 1 1 Answer
  • 0 Views
  • 0 Followers
  • 0
Share
  • Facebook
  • Report

Leave an answer
Cancel reply

You must login to add an answer.

Forgot Password?

Need An Account, Sign Up Here

1 Answer

  • Voted
  • Oldest
  • Recent
  • Random
  1. Editorial Team
    Editorial Team
    2026-05-22T20:34:29+00:00Added an answer on May 22, 2026 at 8:34 pm

    Note: Although this is a simple, obvious solution to the problem as stated, the below answer is probably better in most cases.

    If the alternative is this:

    if problem_test():
        SendEmail()
        raise Exception
    

    Then why don’t you just define a custom raise_email method?

    def raise_email(self, e):
        SendEmail()
        raise e
    
    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I have a Python class full of static methods. What are the advantages and
Not many are aware of this feature, but Python's functions (and methods) can have
If I have Python code class A(): pass class B(): pass class C(A, B):
I have a python module that defines a number of classes: class A(object): def
I know python functions are virtual by default. Let's say I have this: class
What exactly are the Python scoping rules? If I have some code: code1 class
I'm using the SQLAlchemy Python ORM in a Pylons project. I have a class
(Django 1.x, Python 2.6.x) I have models to the tune of: class Animal(models.Model): pass
I wonder if it's possible to keep methods for a Python class in a
I have a class model designed for a person class in python. where a

Explore

  • Home
  • Add group
  • Groups page
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Users
  • Help
  • SEARCH

Footer

© 2021 The Archive Base. All Rights Reserved
With Love by The Archive Base

Insert/edit link

Enter the destination URL

Or link to existing content

    No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.