// // // // // $Revision: 1624 $ // using System; using System.Runtime.Serialization; namespace ICSharpCode.Core { /// /// Base class for exceptions thrown by the SharpDevelop core. /// [Serializable()] public class CoreException : Exception { public CoreException() : base() { } public CoreException(string message) : base(message) { } public CoreException(string message, Exception innerException) : base(message, innerException) { } protected CoreException(SerializationInfo info, StreamingContext context) : base(info, context) { } } }