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

  • SEARCH
  • Home
  • 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 4627530
In Process

The Archive Base Latest Questions

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

I get a warning that BaseException.message is deprecated in Python 2.6 when I use

  • 0

I get a warning that BaseException.message is deprecated in Python 2.6 when I use the following user-defined exception:

class MyException(Exception):

    def __init__(self, message):
        self.message = message

    def __str__(self):
        return repr(self.message)

This is the warning:

DeprecationWarning: BaseException.message has been deprecated as of Python 2.6
self.message = message

What’s wrong with this? What do I have to change to get rid of the deprecation warning?

  • 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-22T03:34:50+00:00Added an answer on May 22, 2026 at 3:34 am

    Solution – almost no coding needed

    Just inherit your exception class from Exception and pass the message as the first parameter to the constructor

    Example:

    class MyException(Exception):
        """My documentation"""
    
    try:
        raise MyException('my detailed description')
    except MyException as my:
        print my # outputs 'my detailed description'
    

    You can use str(my) or (less elegant) my.args[0] to access the custom message.

    Background

    In the newer versions of Python (from 2.6) we are supposed to inherit our custom exception classes from Exception which (starting from Python 2.5) inherits from BaseException. The background is described in detail in PEP 352.

    class BaseException(object):
    
        """Superclass representing the base of the exception hierarchy.
        Provides an 'args' attribute that contains all arguments passed
        to the constructor.  Suggested practice, though, is that only a
        single string argument be passed to the constructor."""
    

    __str__ and __repr__ are already implemented in a meaningful way,
    especially for the case of only one arg (that can be used as message).

    You do not need to repeat __str__ or __init__ implementation or create _get_message as suggested by others.

    • 0
    • Reply
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
      • Report

Sidebar

Related Questions

I get this warning from GCC: warning: cannot pass objects of non-POD type 'class
I get the following warning when using java.net.URLEncoder.encode : warning: [deprecation] encode(java.lang.String) in java.net.URLEncoder
When I compile my application under Delphi 2006 I get the following warning [Pascal
With the Visual Studio 2005 C++ compiler , I get the following warning when
I have the following code, for which I get the error: Warning : mysqli_stmt::bind_result()
Does anyone know how I can get rid of the following assembler warning? Code
I recently started Erlang, and I notice I constantly get Warning: variable X is
I get the warning childNodes is null or not an object' with different line
Running FxCop on my code, I get this warning: Microsoft.Maintainability : 'FooBar.ctor is coupled
I'm using Chris Pederick's Firefox addon Web Developer 1.1.6 . I get this warning

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.