mirror of https://github.com/CIRCL/url-abuse
15 lines
204 B
Python
15 lines
204 B
Python
|
#!/usr/bin/env python3
|
||
|
# -*- coding: utf-8 -*-
|
||
|
|
||
|
|
||
|
class URLAbuseException(Exception):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class CreateDirectoryException(URLAbuseException):
|
||
|
pass
|
||
|
|
||
|
|
||
|
class MissingEnv(URLAbuseException):
|
||
|
pass
|