TasksWritingException Class |
Namespace: Aspose.Tasks
The TasksWritingException type exposes the following members.
Name | Description | |
---|---|---|
![]() ![]() | TasksWritingException |
Initializes a new instance of the TasksWritingException class.
|
Name | Description | |
---|---|---|
![]() | Data | (Inherited from Exception.) |
![]() | HelpLink | (Inherited from Exception.) |
![]() | HResult | (Inherited from Exception.) |
![]() | InnerException | (Inherited from Exception.) |
![]() ![]() | LogText |
Gets the exception logging information.
(Inherited from TasksLoggedException.) |
![]() | Message | (Inherited from Exception.) |
![]() ![]() | Operation |
Gets the exception operation information.
(Inherited from TasksLoggedException.) |
![]() | Source | (Inherited from Exception.) |
![]() | StackTrace | (Inherited from Exception.) |
![]() | TargetSite | (Inherited from Exception.) |
Name | Description | |
---|---|---|
![]() | Equals | (Inherited from Object.) |
![]() | Finalize | (Inherited from Object.) |
![]() | GetBaseException | (Inherited from Exception.) |
![]() | GetHashCode | (Inherited from Object.) |
![]() | GetObjectData | (Inherited from Exception.) |
![]() | GetType | (Inherited from Exception.) |
![]() | MemberwiseClone | (Inherited from Object.) |
![]() | ToString | (Inherited from Exception.) |
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); }