示例#1
0
 internal AdomdError(int errorCode, string source, string message, string helpLink, XmlaMessageLocation location) : this(errorCode, source, message, helpLink)
 {
     if (location != null)
     {
         this.errorLocation = new AdomdErrorLocation(location);
     }
 }
示例#2
0
 internal AdomdError(int errorCode, string source, string message, string helpLink)
 {
     this.errorCode     = errorCode;
     this.source        = source;
     this.message       = message;
     this.helpLink      = helpLink;
     this.errorLocation = null;
 }