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
  • 2 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
I have many variable-sized lists containing instances of the same class with attribute foo,
Not many are aware of this feature, but Python's functions (and methods) can have
Does C# have anything like Python's __getattr__ ? I have a class with many
I have a list of many Python objects like this: class RangeClass(object): def __init__(self,address,size):
I have a python class which reads a config file using ConfigParser: Config file:
If I have Python code class A(): pass class B(): pass class C(A, B):
If I have a python class, how can I alias that class-name into another
Suppose I have a Python class that I want to add an extra property
I have a python module that defines a number of classes: class A(object): def

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.