libratom/libratom

View on GitHub
libratom/lib/exceptions.py

Summary

Maintainability
A
0 mins
Test Coverage
"""
Custom exceptions
"""


class RatomException(Exception):
    """
    Base exception class for libratom's custom exceptions
    """


class FileTypeError(RatomException):
    """
    File type not supported
    """