fasta.exceptions

Written by Lucas Sinclair. MIT Licensed. Contact at www.sinclair.bio

 1#!/usr/bin/env python3
 2# -*- coding: utf-8 -*-
 3
 4"""
 5Written by Lucas Sinclair.
 6MIT Licensed.
 7Contact at www.sinclair.bio
 8"""
 9
10# Built-in modules #
11
12# Internal modules #
13
14###############################################################################
15class ValidationError(Exception):
16    """
17    An exception to be used when something fails to validate or is
18    ill-formatted.
19    """
20    pass
class ValidationError(builtins.Exception):
16class ValidationError(Exception):
17    """
18    An exception to be used when something fails to validate or is
19    ill-formatted.
20    """
21    pass

An exception to be used when something fails to validate or is ill-formatted.

Inherited Members
builtins.Exception
Exception
builtins.BaseException
with_traceback
args