1
0
mirror of https://github.com/microsoft/qlib.git synced 2026-07-03 02:50:58 +08:00
Files
qlib/qlib/utils/exceptions.py
SunsetWolf 144e1e2459 Fix pylint (#888)
* add_pylint_to_workflow

* fix-pylint

* fix_pylinterror

* fix-issue
2022-01-26 19:27:24 +08:00

20 lines
438 B
Python

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT License.
# Base exception class
class QlibException(Exception):
pass
class RecorderInitializationError(QlibException):
"""Error type for re-initialization when starting an experiment"""
class LoadObjectError(QlibException):
"""Error type for Recorder when can not load object"""
class ExpAlreadyExistError(Exception):
"""Experiment already exists"""