Class TasksWritingException
TasksWritingException class
Represents the standard internal writing exception type.
public class TasksWritingException : TasksLoggedException
Properties
Name | Description |
---|---|
LogText { get; } | Gets the exception logging information. |
Operation { get; } | Gets the exception operation information. |
Examples
Shows how to read log text and type of exception to check problems with MPP export.
try
{
var project = new Project(DataDir + "PrintTaskWritingException.mpp");
// export the project as an MPP file
project.Save(OutDir + "PrintTaskWritingException_out.MPP", SaveFileFormat.Mpp);
}
catch (TasksWritingException ex)
{
Console.WriteLine("Exception Operation: " + ex.Operation);
Console.WriteLine("Exception Log Text: ");
Console.WriteLine(ex.LogText);
}
See Also
- class TasksLoggedException
- namespace Aspose.Tasks
- assembly Aspose.Tasks