Nexus.Client.Games.Gamebryo.PluginManagement.Sorter.PluginSorter.GetLastErrorDetails C# (CSharp) Method

GetLastErrorDetails() private method

Gets the details of the last error.
private GetLastErrorDetails ( ) : string
return string
		private string GetLastErrorDetails()
		{
			IntPtr ptrDetails = IntPtr.Zero;
			string strDetails = null;
			UInt32 uintStatus = m_dlgGetErrorMessage(out strDetails);
			HandleStatusCode(uintStatus);
			return strDetails;
		}