TasksWritingException

TasksWritingException class

Represents the standard internal writing exception type.

public class TasksWritingException : TasksLoggedException

Properties

NameDescription
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