WebReportExceptions.cs 662 B

123456789101112131415161718192021222324252627282930
  1. using System;
  2. using System.Runtime.Serialization;
  3. namespace FastReport.Web
  4. {
  5. [Serializable]
  6. internal abstract class WebReportException : Exception
  7. {
  8. public WebReportException()
  9. {
  10. }
  11. public WebReportException(string message) : base(message)
  12. {
  13. }
  14. public WebReportException(string message, Exception innerException) : base(message, innerException)
  15. {
  16. }
  17. protected WebReportException(SerializationInfo info, StreamingContext context) : base(info, context)
  18. {
  19. }
  20. }
  21. internal sealed class UnsupportedExportException : WebReportException
  22. {
  23. }
  24. }