Metadata-Version: 2.1
Name: py-error
Version: 0.0.1
Summary: An easily-extendable error class for use with python classes
Home-page: https://github.com/justdvnsh/py-error
Author: Divyansh Dwivedi
Author-email: justdvnsh2208@gmail.com
License: UNKNOWN
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown

# es6-error

An easily-extendable error class for use with python classes 

## Why?

I made this because I wanted to be able to extend Error for inheritance and type
checking .

## Usage

```python
class myClass(ExtendableError):
#     // __init__ is optional; you should omit it if you just want a custom error
#   // type for inheritance and type checking
    def __init__(self, message='OOps!'):
        super(message)

```

#### Todo

- tests

