Class ValidationException
ValidationException class
Represents an exception which is thrown when errors are found during validation of entity.
public class ValidationException : ApplicationException
Examples
Shows how to handle <see cref=“ValidationException”/> while working with recurrence tasks.
try
{
var project = new Project();
var parameters = new RecurringTaskParameters { TaskName = "t1", Duration = project.GetDuration(1, TimeUnitType.Day), RecurrencePattern = null };
project.RootTask.Children.Add(parameters);
}
catch (ValidationException ex)
{
Console.WriteLine("Message: ");
Console.WriteLine(ex.Message);
if (ex.InnerException != null)
{
Console.WriteLine("Inner exception message: ");
Console.WriteLine(ex.InnerException.Message);
}
}
See Also
- namespace Aspose.Tasks
- assembly Aspose.Tasks