Skip to main content

As the python exception API is quite a bit obscure this python module wraps around python exceptions to provide a clean interface for analysis and logging purposes.

Project description

jk_exceptionhelper

Introduction

This python module wraps around python exceptions. As the python exception API is quite a bit obscure this python module provides a clean API for analysis and logging purposes.

Information about this module can be found here:

Why this module?

As the python exception API is quite a bit obscure this python module tries to solve this problem. By focusing on this problem in an isolated way improvements can easily be made without breaking and adapting a variety of implementations.

How to use this module

Import this module

Please include this module into your application using the following code:

import jk_exceptionhelper

Analyse the exeption

Example:

try: a = 0 b = 5 / a except: ee = jk_exceptionhelper.analyseException()

Now ee contains an instance of ExceptionObject. ExceptionObject contains all relevant information from the exception for your convenience to work with. (For details about the ExceptionObject API see below.)

Output the exception data

Example:

try: a = 0 b = 5 / a except: jk_exceptionhelper.analyseException().dump()

...

API: Functions

Function analyseException()

ExceptionObject analyseException()

This function should be called at the first statement within an except block. It returns an object of type ExceptionObject containing all relevant information from the exception for your convenience to work with.

API: Classes

Class 'ExceptionObject'

Fields

Type Name Required? Description
class exceptionClass optional The original exception class. This instance will only be present if analyseException() was called within an except block.
str exceptionClassName required The class name of the exception.
str exceptionTextHR optional A human readable text that was contained within the exception.
StackTraceItem[] stackTrace optional The stack trace. The last item of the list is the topmost stack element.
ExceptionObject nestedException optional The parent exception object if this exception has been caught in an except block.

Static Methods

Static Method StackTraceItem fromJSON(dict data)

StackTraceItem fromJSON(dict data)

Deserialize a data structure created by toJSON().

Methods

Method void dump()

void dump()

Print the contents of the exception to STDOUT.

Example:

try:
	a = 0
	b = 5 / a
except:
	analyseException().dump()

This will print:

ZeroDivisionError
: exceptionTextHR:
:	division by zero
: stackTrace:
:	(./test2.py:55, 'b = 5 / a')
:	(./test2.py:59, 'main3()')
:	(./test2.py:63, 'main2()')
:	(./test2.py:67, 'main1()')

Method dict toJSON(bool bRecursive = True)

dict toJSON(bool bRecursive = True)

Serialize the exception object to JSON format.

Arguments:

  • bool bRecursive : If True (which is the default) nested exceptions are serialized as well. If False these get skipped.

Example:

try:
	a = 0
	b = 5 / a
except:
	edata = analyseException().toJSON()

Method dict toJSON(bool bRecursive = True)

dict toJSON_flat()

Same as toJSON(False).

Arguments:

  • (none)

Contact Information

This is Open Source code. That not only gives you the possibility of freely using this code it also allows you to contribute. Feel free to contact the author(s) of this software listed below, either for comments, collaboration requests, suggestions for improvement or reporting bugs:

License

This software is provided under the following license:

  • Apache Software License 2.0

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

jk_exceptionhelper-0.2019.9.30.tar.gz (9.0 kB view details)

Uploaded Source

File details

Details for the file jk_exceptionhelper-0.2019.9.30.tar.gz.

File metadata

  • Download URL: jk_exceptionhelper-0.2019.9.30.tar.gz
  • Upload date:
  • Size: 9.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.14.0 pkginfo/1.4.2 requests/2.20.1 setuptools/40.6.3 requests-toolbelt/0.8.0 tqdm/4.28.1 CPython/3.5.2

File hashes

Hashes for jk_exceptionhelper-0.2019.9.30.tar.gz
Algorithm Hash digest
SHA256 b42a2e7c8dedd81e7ca74b79a7a6e41670a3d7db4ef95940411b69a628c7ae01
MD5 c0917eadbbea6b1b374f9186f153c3ba
BLAKE2b-256 391bc42a9a7cd0e7ae66e9a410087cac43c3fbecfadfb54c26f99850aead5daa

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page