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 6864129
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 27, 20262026-05-27T02:52:21+00:00 2026-05-27T02:52:21+00:00

I am trying to write a stand alone Class that can be imported. As

  • 0

I am trying to write a stand alone Class that can be imported. As part of this I’d like to throw exceptions in my Class that can be caught and dealt with in the Main. Is it possible to throw specific exceptions to Main for the user/developer to deal with?

I’m reasonable comfortable using the try: and except: in the Class and the Main to throw their own exceptions, it’s getting the Class to pass a specific exception onto the Main that I can’t work out.

Also, is it possible to some how set up the Python class so that it informs the user what exceptions they have to be able to catch to use my specific Class?

Thanks.

  • 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-27T02:52:22+00:00Added an answer on May 27, 2026 at 2:52 am

    Check out the python tutorial section on user defined exceptions and also the section “Exceptions are Classes Too”. You can define your own exceptions as subclasses of the Exception class, and then catch them in your main.

    Here’s a quick example, although the one in the tutorial is better:

    class MyModuleException(Exception):
        """An exception raised by my module"""
    
        def __init__(self, message):
            super(MyModuleException, self).__init__(message)
    

    and then later in your main method:

    try:
        myModule.doSomethingExceptional()
    except MyModuleException as e:
        print "Oh no!"
    

    Lastly, you typically inform the client of your module what exceptions might be raised in the documentation. The conventions for Python docstrings says:

    The docstring for a function or method should summarize its behavior and document its arguments, return value(s), side effects, exceptions raised …

    Edit: You should also take a look at the python library reference on exceptions for the list of standard exception classes, which may be appropriate for you to subclass.

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

Sidebar

Related Questions

I'm trying to write some LINQ To SQL code that would generate SQL like
Trying to write a PowerShell cmdlet that will mute the sound at start, unless
Trying to write a couple of functions that will encrypt or decrypt a file
im trying to write an app that will display a list off lines from
I'm trying to write a regex function that will identify and replace a single
I'm trying to write a custom WPF ValidationRule to enforce that a certain property
Using SQL Server 2008 Reporting services: I'm trying to write a report that displays
I'm trying out PyCharm for Django development and I can't stand the white background.
I am trying to write a code that opens an FTP server on my
I am trying to write my own Javascript Framework something like jQuery. I use

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.