public class InvaildSessionException : System.Exception

    {

        public InvaildSessionException() : base() {}

        public InvaildSessionException(string message) : base(message) { }

        public InvaildSessionException(string message, System.Exception inner) : base(message, inner) { }


        // A constructor is needed for serialization when an

        // exception propagates from a remoting server to the client. 

        protected InvaildSessionException(System.Runtime.Serialization.SerializationInfo info,

            System.Runtime.Serialization.StreamingContext context)

        { }

    }




https://msdn.microsoft.com/ko-kr/library/ms173163.aspx

'Develop' 카테고리의 다른 글

윈도우에서 하위 폴더 svn add  (0) 2016.05.18
mysql while loop  (0) 2016.05.13
c# task overhead  (0) 2016.05.11
CppUnitTestFramework 실행 순서  (0) 2016.05.10
gcm push  (0) 2016.04.20

+ Recent posts