Coverage for pyquickhelper/ipythonhelper/notebook_exception.py: 100%

6 statements  

« prev     ^ index     » next       coverage.py v7.2.7, created at 2023-06-03 02:21 +0200

1""" 

2@file 

3@brief Some automation helpers about notebooks 

4""" 

5 

6 

7class NotebookException(Exception): 

8 

9 """ 

10 Exception raises when something wrong happened with a notebook. 

11 """ 

12 pass 

13 

14 

15class InNotebookException(Exception): 

16 

17 """ 

18 Exception raises when something wrong happened in a notebook. 

19 """ 

20 pass 

21 

22 

23class JupyterException(Exception): 

24 

25 """ 

26 Exception raises by :epkg:`Jupyter`. 

27 """ 

28 pass