MetaFusion/Reference/MSLiveLink/DHI/core/error.py

12 lines
367 B
Python
Raw Normal View History

2025-02-03 22:58:41 +08:00
class DNAEstimatorError(Exception):
"""Basic DNAEstimator exception. This is super-class for all DNAEstimator exceptions."""
def __init__(self, message=None):
"""
self.message is string representing human-readable message.
"""
self.message = message
def __str__(self):
return "DNAEstimatorError: " + self.message