00001 using System; 00002 using System.Collections.Generic; 00003 using System.Linq; 00004 using System.Text; 00005 00006 namespace GEP.Core.Common 00007 { 00017 [Serializable] 00018 public class GepException : Exception 00019 { 00024 public GepException(string message) 00025 : base(message) { } 00026 } 00027 }