// // // // // $Revision: 1624 $ // using System; using System.Runtime.Serialization; namespace ICSharpCode.Core { /// /// Exception used when loading an AddIn fails. /// [Serializable] public class AddInLoadException : CoreException { public AddInLoadException() : base() { } public AddInLoadException(string message) : base(message) { } public AddInLoadException(string message, Exception innerException) : base(message, innerException) { } protected AddInLoadException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }