Source code for crc_diagram.exceptions

# coding: utf-8

from __future__ import (
    absolute_import,
    unicode_literals
)


[docs]class ParserException(Exception): """ Raised when something goes wrong while parsing source files to CRCs. """ pass