Package Bio :: Package PDB :: Module PDBExceptions
[hide private]
[frames] | no frames]

Source Code for Module Bio.PDB.PDBExceptions

 1  # Copyright (C) 2002, Thomas Hamelryck (thamelry@binf.ku.dk) 
 2  # This code is part of the Biopython distribution and governed by its 
 3  # license.  Please see the LICENSE file that should have been included 
 4  # as part of this package.   
 5   
 6  """Some Bio.PDB-specific exceptions.""" 
 7   
 8  # General error 
9 -class PDBException(Exception):
10 pass
11 12 # The PDB file cannot be unambiguously represented in the SMCRA 13 # data structure
14 -class PDBConstructionException(Exception):
15 pass
16
17 -class PDBConstructionWarning(Warning):
18 pass
19