schrodinger.analysis.visanalysis.vdexception module¶
- exception schrodinger.analysis.visanalysis.vdexception.VDException(msg, detail=None)¶
Bases:
Exception
This is a simple Exception derived class used by the various VolumeData associated components to denote an error condition.
- __init__(msg, detail=None)¶
This function creates a new VDException. The msg should describe the error condition. detail may contain a bit more information if that is appropriate.
- Parameters
msg (
string
) – The error messagedetail (
string
) – Additional error detail
- args¶
- with_traceback()¶
Exception.with_traceback(tb) – set self.__traceback__ to tb and return self.