Python.Runtime.PythonException.PythonException C# (CSharp) Method

PythonException() public method

public PythonException ( ) : System
return System
	public PythonException() : base() {
	    Runtime.PyErr_Fetch(ref excType, ref excValue, ref excTb);
	    Runtime.Incref(excType);
	    Runtime.Incref(excValue);
	    Runtime.Incref(excTb);

	}