Autodesk.Revit.Exceptions.CentralFileCommunicationException是Revit API中的一个异常类,它表示在向中央文件进行通信时发生的通信错误。
此异常在以下情况下被触发:
Autodesk.Revit.Exceptions.CentralFileCommunicationException类继承自Autodesk.Revit.Exceptions.RevitApiException类。
public CentralFileCommunicationException(string message);
public CentralFileCommunicationException(string message, Exception innerException);
try
{
// do something with central file
}
catch(Autodesk.Revit.Exceptions.CentralFileCommunicationException ex)
{
// handle communication exception
}