Home Backend Development Python Tutorial A brief discussion on Python throwing exceptions, custom exceptions, and passing exceptions

A brief discussion on Python throwing exceptions, custom exceptions, and passing exceptions

Jul 21, 2016 pm 02:53 PM
Custom exception

1. Throw exception

Python uses exception objects to represent abnormal situations. When an error is encountered, an exception will be thrown. If the exception object is not handled or caught, the program will terminate execution with a so-called traceback (an error message).

raise statement

The raise keyword in Python is used to raise an exception, which is basically the same as the throw keyword in C# and Java, as shown below:

import traceback

def throw_error():
  raise Exception("抛出一个异常")#异常被抛出,print函数无法执行
  print("飞天猪")
  
throw_error()

Copy after login

#Run result:

'''Traceback (most recent call last):
 File "C:\Users\Administrator\Desktop\systray.py", line 7, in <module>
  throw_error()
 File "C:\Users\Administrator\Desktop\systray.py", line 4, in throw_error
  raise Exception("抛出一个异常")#异常被抛出,print函数无法执行
Exception: 抛出一个异常'''
Copy after login

After the raise keyword, the throw is a general exception type (Exception). Generally speaking, the more detailed the exception thrown, the better

2. Transmission exception:

If you catch an exception, but want to re-raise it (pass the exception), you can use the raise statement without parameters:

class MufCalc(object):
  m = False
  def calc(self,exp):
    try:
      return eval(exp)
    except ZeroDivisionError:
      if self.m:
        print("cool")
      else:
        raise

app = MufCalc()
app.calc(2/0)

Copy after login

3. Custom exception type :

You can also customize your own special types of exceptions in Python, just inherit from the Exception class (directly or indirectly):

class MyError(Exception):
  pass
Copy after login

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
1 months ago By 尊渡假赌尊渡假赌尊渡假赌
Two Point Museum: All Exhibits And Where To Find Them
1 months ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

How to implement error handling and custom exceptions in FastAPI How to implement error handling and custom exceptions in FastAPI Jul 29, 2023 pm 07:00 PM

How to implement error handling and custom exceptions in FastAPI Introduction: FastAPI is a modern web framework based on Python. Its high performance and rapid development capabilities make it increasingly popular in the development field. In actual applications, errors and exceptions are often encountered. This article will introduce how to implement error handling and custom exceptions in FastAPI to help developers better handle and manage error situations in applications. FastAPI error handling: FastAPI provides a

Creation and use of Java custom exceptions Creation and use of Java custom exceptions May 03, 2024 pm 10:27 PM

Custom exceptions are used to create error messages and handling logic. First, you need to inherit Exception or RuntimeException to create a custom exception class. Then, you can override the getMessage() method to set the exception message. Exceptions are thrown through the throw keyword. Use try-catch blocks to handle custom exceptions. This article provides a practical case for parsing integer input and throwing a custom InvalidInputException when the input is not an integer.

C++ program creates custom exception C++ program creates custom exception Aug 26, 2023 pm 07:53 PM

Exceptions are a very core concept of C++. Exceptions occur when an undesired or impossible operation occurs during execution. Handling these unwanted or impossible operations in C++ is called exception handling. Exception handling mainly uses three specific keywords, which are ‘try’, ‘catch’ and ‘throw’. The ‘try’ keyword is used to execute code that may encounter exceptions, the ‘catch’ keyword is used to handle these exceptions, and the ‘throws’ keyword is used to create exceptions. Exceptions in C++ can be divided into two types, namely STL exceptions and user-defined exceptions. In this article, we focus on how to create these custom exceptions. More details on exception handling can be found here. Use a single

Python exception handling: master the sharp edge and control your code life Python exception handling: master the sharp edge and control your code life Feb 25, 2024 pm 04:10 PM

Python is a powerful programming language, but it's not perfect. When running a Python program, you may encounter a variety of exceptions, causing the program to crash or produce erroneous results. In order to avoid these situations from happening, we need to handle abnormal situations, that is, exception handling. The basic syntax for exception handling is try-except-finally. The try block contains code that may cause an exception, the except block is used to catch exceptions, and the finally block is used for code that will be executed regardless of whether an exception occurs. The following is a simple exception handling example: try: #Code that may cause exceptions exceptExceptionase: #Catch exceptions and handle fi

Solution to Java custom exception handling exception (CustomExceptionHandlerException) Solution to Java custom exception handling exception (CustomExceptionHandlerException) Aug 17, 2023 pm 06:18 PM

Solution to Java custom exception handling exception (CustomExceptionHandlerException) In Java development, we often encounter various abnormal situations. In addition to the exception types already defined in Java, we can also customize exception types to better handle specific business logic. However, in the process of using custom exception handling, you sometimes encounter some problems, such as CustomExceptionHandlerExcept

How to customize exception information? How to customize exception information? Jun 05, 2024 pm 07:05 PM

Using custom exception information in Python can understand and solve problems more clearly. Among them, the raise statement can throw an exception and pass in error information. For example, in the example, the ValueError exception passes in custom information "Age cannot be a negative number", and a similar method can be used when dealing with invalid email addresses.

How to create custom exceptions in CakePHP? How to create custom exceptions in CakePHP? Jun 03, 2023 pm 07:51 PM

CakePHP is a popular PHP framework that provides many useful features, one of which is exception handling. During the development process, we may encounter situations where we need to customize exceptions. This article will introduce how to create custom exceptions in CakePHP. 1. Basics of exception handling In CakePHP, exception handling is implemented through the CakeErrorExceptionRenderer class. When the framework catches an exception, it passes the exception instance to ExceptionR

Exception handling in C++ technology: How to define and throw error codes for custom exceptions? Exception handling in C++ technology: How to define and throw error codes for custom exceptions? May 09, 2024 pm 02:09 PM

In C++ exception handling, custom exceptions and error codes can provide more detailed error information. You can define an exception class derived from std::exception, including descriptive member variables and functions, and use the std::make_error_code() function to throw an exception containing an error code. After catching an exception, you can access the error message from e.what() and the error code from e.code() for more efficient error handling and diagnosis.

See all articles