#-----------------------------------------------------------------------------# Copyright (c) 2012 - 2022, Anaconda, Inc., and Bokeh Contributors.# All rights reserved.## The full license is in the file LICENSE.txt, distributed with this software.#-----------------------------------------------------------------------------''' Provide Bokeh-specific warning subclasses.The primary use of these subclasses to to force them to be unconditionallydisplayed to users by default.'''#-----------------------------------------------------------------------------# Boilerplate#-----------------------------------------------------------------------------from__future__importannotationsimportlogging# isort:skiplog=logging.getLogger(__name__)#-----------------------------------------------------------------------------# Imports#-----------------------------------------------------------------------------#-----------------------------------------------------------------------------# Globals and constants#-----------------------------------------------------------------------------__all__=('BokehDeprecationWarning','BokehUserWarning',)#-----------------------------------------------------------------------------# General API#-----------------------------------------------------------------------------
[docs]classBokehDeprecationWarning(DeprecationWarning):''' A Bokeh-specific ``DeprecationWarning`` subclass. Used to selectively filter Bokeh deprecations for unconditional display. '''
[docs]classBokehUserWarning(UserWarning):''' A Bokeh-specific ``UserWarning`` subclass. Used to selectively filter Bokeh warnings for unconditional display. '''
#-----------------------------------------------------------------------------# Dev API#-----------------------------------------------------------------------------#-----------------------------------------------------------------------------# Private API#-----------------------------------------------------------------------------#-----------------------------------------------------------------------------# Code#-----------------------------------------------------------------------------