Source code for idaes.vis.vis_exceptions

##############################################################################
# Institute for the Design of Advanced Energy Systems Process Systems
# Engineering Framework (IDAES PSE Framework) Copyright (c) 2018, by the
# software owners: The Regents of the University of California, through
# Lawrence Berkeley National Laboratory,  National Technology & Engineering
# Solutions of Sandia, LLC, Carnegie Mellon University, West Virginia
# University Research Corporation, et al. All rights reserved.
# 
# Please see the files COPYRIGHT.txt and LICENSE.txt for full copyright and
# license information, respectively. Both files are also available online
# at the URL "https://github.com/IDAES/idaes".
##############################################################################
[docs]class MissingVariablesException(Exception): pass
[docs]class MissingProfileMethodException(Exception): pass
[docs]class BadDataFrameException(Exception): pass
[docs]class NonExistingIDAESObject(Exception): pass
[docs]class NoIndexSetFoundForPlot(Exception): pass
[docs]class DefaultIndexNotSpecified(Exception): pass
[docs]class ShowFailedException(Exception): pass
[docs]class MissingCurrentPlot(Exception): pass