# Copyright (c) 2019-2020, RTE (https://www.rte-france.com)
# See AUTHORS.txt
# This Source Code Form is subject to the terms of the Mozilla Public License, version 2.0.
# If a copy of the Mozilla Public License, version 2.0 was not distributed with this file,
# you can obtain one at http://mozilla.org/MPL/2.0/.
# SPDX-License-Identifier: MPL-2.0
# This file is part of Grid2Op, Grid2Op a testbed platform to model sequential decision making in power systems.
from grid2op.Exceptions.grid2OpException import Grid2OpException
# Exception bad environment configured
[docs]class EnvError(Grid2OpException):
"""
This exception indicate that the :class:`grid2op.Environment.Environment` is poorly configured.
It is for example thrown when assessing if a backend is properly set up with
:func:`grid2op.Backend.Backend.assert_grid_correct`
"""
pass
[docs]class IncorrectNumberOfLoads(EnvError):
"""
This is a more precise exception than :class:`EnvError` indicating that there is a mismatch in the total number of
loads of the powergrid.
"""
pass
[docs]class IncorrectNumberOfGenerators(EnvError):
"""
This is a more precise exception than :class:`EnvError` indicating that there is a mismatch in the total number of
generators of the powergrid.
"""
pass
[docs]class IncorrectNumberOfLines(EnvError):
"""
This is a more precise exception than :class:`EnvError` indicating that there is a mismatch in the total number of
powerlines of the powergrid.
"""
pass
[docs]class IncorrectNumberOfSubstation(EnvError):
"""
This is a more precise exception than :class:`EnvError` indicating that there is a mismatch in the total
number of substation of the powergrid.
"""
pass
[docs]class IncorrectNumberOfStorages(EnvError):
"""
This is a more precise exception than :class:`EnvError` indicating that there is a mismatch in the total
number of storage of the powergrid.
"""
pass
[docs]class IncorrectNumberOfElements(EnvError):
"""
This is a more precise exception than :class:`EnvError` indicating that there is a mismatch in the total number
of elements of the powergrid.
"""
pass
[docs]class IncorrectPositionOfLoads(EnvError):
"""
This is a more precise exception than :class:`EnvError` indicating that there is a mismatch in the number of
loads at a substation.
"""
pass
[docs]class IncorrectPositionOfGenerators(EnvError):
"""
This is a more precise exception than :class:`EnvError` indicating that there is a mismatch in the number of
generators at a substation.
"""
pass
[docs]class IncorrectPositionOfLines(EnvError):
"""
This is a more precise exception than :class:`EnvError` indicating that there is a mismatch in the number of
power lines at a substation.
"""
pass
[docs]class IncorrectPositionOfStorages(EnvError):
"""
This is a more precise exception than :class:`EnvError` indicating that there is a mismatch in the number of
storage unit at a substation.
"""
pass
# Unknown environment at creation
[docs]class UnknownEnv(Grid2OpException):
"""
This exception indicate that a bad argument has been sent to the :func:`grid2op.make` function.
It does not recognize the name of the :class:`grid2op.Environment.Environment`.
"""
pass
# multi environment
[docs]class MultiEnvException(Grid2OpException):
"""General exception raised by :class:`grid2Op.MultiEnv.MultiEnvironment`"""
pass