EmbeddedResourceNotFoundException.cs
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:2k
源码类别:

编辑器/阅读器

开发平台:

C#

  1. // -- FILE ------------------------------------------------------------------
  2. // name       : EmbeddedResourceNotFoundException.cs
  3. // project    : Itenso Web User Forms
  4. // created    : Jani Giannoudis - 2008.10.30
  5. // language   : c#
  6. // environment: .NET 2.0
  7. // copyright  : (c) 2008 by Itenso GmbH, Switzerland
  8. // --------------------------------------------------------------------------
  9. using System;
  10. using System.Runtime.Serialization;
  11. namespace Itenso.WebUserForms.Data
  12. {
  13. // ------------------------------------------------------------------------
  14. [Serializable()]
  15. public class EmbeddedResourceNotFoundException : Exception
  16. {
  17. // ----------------------------------------------------------------------
  18. /// <summary>
  19. /// Creates a new empty instance.
  20. /// </summary>
  21. public EmbeddedResourceNotFoundException()
  22. {
  23. } // EmbeddedResourceNotFoundException
  24. // ----------------------------------------------------------------------
  25. /// <summary>
  26. /// Creates a new instance with the given message.
  27. /// </summary>
  28. /// <param name="message">the message to display</param>
  29. public EmbeddedResourceNotFoundException( string message ) :
  30. base( message )
  31. {
  32. } // EmbeddedResourceNotFoundException
  33. // ----------------------------------------------------------------------
  34. /// <summary>
  35. /// Creates a new instance with the given message, based on the given original exception.
  36. /// </summary>
  37. /// <param name="message">the message to display</param>
  38. /// <param name="innerException">the original exception causing this one</param>
  39. public EmbeddedResourceNotFoundException( string message, Exception innerException ) :
  40. base( message, innerException )
  41. {
  42. } // EmbeddedResourceNotFoundException
  43. // ----------------------------------------------------------------------
  44. /// <summary>
  45. /// Serialization support.
  46. /// </summary>
  47. /// <param name="info">the info to use for serialization</param>
  48. /// <param name="context">the context to use for serialization</param>
  49. protected EmbeddedResourceNotFoundException( SerializationInfo info, StreamingContext context ) :
  50. base( info, context )
  51. {
  52. } // EmbeddedResourceNotFoundException
  53. } // class EmbeddedResourceNotFoundException
  54. } // namespace Itenso.WebUserForms.Data
  55. // -- EOF -------------------------------------------------------------------