00001 /* ---------------------------------------------------------------------------- 00002 * Microsoft Corporation 00003 * ---------------------------------------------------------------------------- 00004 * Microsoft Project Server mpFx (mpFx) 00005 * ---------------------------------------------------------------------------- 00006 * Author: Colby Africa 00007 * ---------------------------------------------------------------------------- 00008 * License: http://code.msdn.microsoft.com/mpFx/Project/License.aspx 00009 * ---------------------------------------------------------------------------- 00010 */ 00011 00012 using System; 00013 using System.Runtime.Serialization; 00014 00015 namespace Mcs.Epm.MicrosoftProject.mpFx.Client.Plugins.PsiExtensionGenerator 00016 { 00017 /// <summary> 00018 /// Implements a simple custom exception type for the PSI Generator plugin 00019 /// </summary> 00020 [Serializable] 00021 public class PsiGeneratorException : Exception 00022 { 00023 public PsiGeneratorException() { } 00024 public PsiGeneratorException(string message) : base(message) { } 00025 public PsiGeneratorException(string message, Exception inner) : base(message, inner) { } 00026 protected PsiGeneratorException(SerializationInfo info, StreamingContext context) : base(info, context) { } 00027 } 00028 }
1.5.8