Source code for maro.utils.exception.simulator_exception

# Copyright (c) Microsoft Corporation.
# Licensed under the MIT license.


from .backends_exception import MAROException
from .error_code import ERROR_CODE


[docs]class BusinessEngineNotFoundError(MAROException): """Exception then the simulator cannot find specified business engine module.""" def __init__(self): super().__init__(2200, ERROR_CODE[2200])