EmbeddedResourceNotFoundException.cs
上传用户:husern
上传日期:2022-03-24
资源大小:534k
文件大小:2k
源码类别:
编辑器/阅读器
开发平台:
C#
- // -- FILE ------------------------------------------------------------------
- // name : EmbeddedResourceNotFoundException.cs
- // project : Itenso Web User Forms
- // created : Jani Giannoudis - 2008.10.30
- // language : c#
- // environment: .NET 2.0
- // copyright : (c) 2008 by Itenso GmbH, Switzerland
- // --------------------------------------------------------------------------
- using System;
- using System.Runtime.Serialization;
- namespace Itenso.WebUserForms.Data
- {
- // ------------------------------------------------------------------------
- [Serializable()]
- public class EmbeddedResourceNotFoundException : Exception
- {
- // ----------------------------------------------------------------------
- /// <summary>
- /// Creates a new empty instance.
- /// </summary>
- public EmbeddedResourceNotFoundException()
- {
- } // EmbeddedResourceNotFoundException
- // ----------------------------------------------------------------------
- /// <summary>
- /// Creates a new instance with the given message.
- /// </summary>
- /// <param name="message">the message to display</param>
- public EmbeddedResourceNotFoundException( string message ) :
- base( message )
- {
- } // EmbeddedResourceNotFoundException
- // ----------------------------------------------------------------------
- /// <summary>
- /// Creates a new instance with the given message, based on the given original exception.
- /// </summary>
- /// <param name="message">the message to display</param>
- /// <param name="innerException">the original exception causing this one</param>
- public EmbeddedResourceNotFoundException( string message, Exception innerException ) :
- base( message, innerException )
- {
- } // EmbeddedResourceNotFoundException
- // ----------------------------------------------------------------------
- /// <summary>
- /// Serialization support.
- /// </summary>
- /// <param name="info">the info to use for serialization</param>
- /// <param name="context">the context to use for serialization</param>
- protected EmbeddedResourceNotFoundException( SerializationInfo info, StreamingContext context ) :
- base( info, context )
- {
- } // EmbeddedResourceNotFoundException
- } // class EmbeddedResourceNotFoundException
- } // namespace Itenso.WebUserForms.Data
- // -- EOF -------------------------------------------------------------------