Exemple #1
0
 public FastReportSerializableException(Exception exception)
 {
     Message    = exception.Message;
     StackTrace = exception.StackTrace;
     if (exception is AggregateException)
     {
         InnerException = new FastReportSerializableException(exception.InnerException);
     }
 }
Exemple #2
0
 public FastReportGenerationException(Exception innerException) : base("Error during report generation")
 {
     ExceptionDetail = new FastReportSerializableException(innerException);
 }