blob: 20c5cedbdc73742776a368847945a3ad9b4d6a2a (
plain)
1
2
3
4
5
6
7
|
"""R/qtl and R/qtl2 error types."""
class RQTLError(Exception):
"""Base class for R/qtl and R/qtl2 errors."""
class InvalidFormat(RQTLError):
"""Raised when the format of the file(s) is invalid."""
|