/src/LinFu.AOP.Interfaces/BootstrapException.cs
http://github.com/philiplaureano/LinFu · C# · 20 lines · 11 code · 1 blank · 8 comment · 0 complexity · c492ca57a463c423ffbd9da83a43eb52 MD5 · raw file
- using System;
- namespace LinFu.AOP.Interfaces
- {
- /// <summary>
- /// Represents an exception thrown when LinFu.AOP is unable to bootstrap itself.
- /// </summary>
- [Serializable]
- public class BootstrapException : Exception
- {
- /// <summary>
- /// Initializes a new instance of the <see cref="BootstrapException" /> class.
- /// </summary>
- /// <param name="message">The exception message.</param>
- /// <param name="ex">The exception itself.</param>
- public BootstrapException(string message, Exception ex) : base(message, ex)
- {
- }
- }
- }