public static String errGetDescript(csRptEditorErrors rptErrCode)
 {
     switch (rptErrCode)
     {
         case csRptEditorErrors.CSRPT_EDITOR_SECTION_TYPE_INVALID:
             return "The section type of the section argument passed to function getHeightOfSectionsBellowMe is not valid.";
         default:
             return "There is not information for this error";
     }
 }
        public static String errGetDescript(csRptEditorErrors rptErrCode)
        {
            switch (rptErrCode)
            {
            case csRptEditorErrors.CSRPT_EDITOR_SECTION_TYPE_INVALID:
                return("The section type of the section argument passed to function getHeightOfSectionsBellowMe is not valid.");

            default:
                return("There is not information for this error");
            }
        }
示例#3
0
 public ReportEditorException(csRptEditorErrors code, String module, String message)
     : base(message)
 {
     errorCode = code;
     className = module;
 }
 public ReportEditorException(csRptEditorErrors code, String module, String message)
     : base(message)
 {
     errorCode = code;
     className = module;
 }