Package PyFoam :: Package ThirdParty :: Package Gnuplot :: Module Errors
[hide private]
[frames] | no frames]

Source Code for Module PyFoam.ThirdParty.Gnuplot.Errors

 1  # $Id: Errors.py 244 2003-04-21 09:44:09Z mhagger $ 
 2   
 3  # Copyright (C) 2001-2003 Michael Haggerty <mhagger@alum.mit.edu> 
 4  # 
 5  # This file is licensed under the GNU Lesser General Public License 
 6  # (LGPL).  See LICENSE.txt for details. 
 7   
 8  """Exception types that can be raised by Gnuplot.py.""" 
 9   
10   
11 -class Error(Exception):
12 """All our exceptions are derived from this one.""" 13 pass
14 15
16 -class OptionError(Error):
17 """Raised for unrecognized option(s)""" 18 pass
19 20
21 -class DataError(Error):
22 """Raised for data in the wrong format""" 23 pass
24