From 7c5cb160f9cb11391997242db6d5428bec3e9afe Mon Sep 17 00:00:00 2001 From: blueShard-dev <63594396+blueShard-dev@users.noreply.github.com> Date: Sun, 12 Jul 2020 19:20:55 +0000 Subject: [PATCH] Add files via upload --- aionlib/_errors.py | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 aionlib/_errors.py diff --git a/aionlib/_errors.py b/aionlib/_errors.py new file mode 100644 index 0000000..a0bf111 --- /dev/null +++ b/aionlib/_errors.py @@ -0,0 +1,7 @@ +#!/usr/bin/python3 + + +class AionNotInstalledError(Exception): + + def __init__(self): + super().__init__("Aion isn't installed") \ No newline at end of file