mirror of
https://github.com/microsoft/qlib.git
synced 2026-07-03 02:50:58 +08:00
20 lines
438 B
Python
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"""
|