1234567891011121314151617181920212223242526272829303132 |
- using System;
- using System.Collections.Generic;
- using System.Runtime.Serialization;
- using System.Text;
- namespace COSXML.CosException
- {
-
-
-
- [Serializable]
- public class CosClientException : System.ApplicationException
- {
-
-
-
-
- public int errorCode;
- public CosClientException(int errorCode, string message)
- : base(message)
- {
- this.errorCode = errorCode;
- }
- public CosClientException(int errorCode, string message, Exception cause)
- : base(message, cause)
- {
- this.errorCode = errorCode;
- }
- }
- }
|