Package com.uic.ase.proj.xbn.config

Examples of com.uic.ase.proj.xbn.config.ConfigFormatException


    else if(iVarStartLine != -1)  {
      sVar = "Variable named '" + crlao.uSOB.getVisible(sobVarStartName) + "' (delimiter='" + cVarStartDelim + "') started on " +
      ((iLineNumber == iVarStartLine)?"THIS line":"line " + iVarStartLine) + ".  ";
    }

    ConfigFormatException cfx = new ConfigFormatException(":  [" + crlao.crc.toString() + "].  [sb_line:  " + iw_line.toString() + "].  NOTES:  "+ sMLC + sSLC + sVar + "  THE SPECIFIC ERROR MESSAGE (LINE " + iLineNumber +
      ((i_charIdx != -1)?", INDEX " + i_charIdx:sES) +
      "):  " + s_message + ".");

    if(!optr.getOWriter().getClass().getName().equals("xbn.output.OWSysDotOut"))  {
      //This is not writing to System.out.  If it were, it would be printed
      //twice.
      optr.write(cfx.toString());
    }
    throw cfx;
  }
View Full Code Here


    try  {
      //Unescape everything that needs to be.
      crla_objects.usAll2BEsc.unescape(ssb_name);

    catch(UnescapeStringException usx)  {
      throw new ConfigFormatException("constructor (LINE " + i_startLine + "):  Attempting to unescape all to-be-escaped strings from the name ('" + crla_objects.uSOB.getVisible(ssb_name) + "')..." + usx.toString());
    }
  }
View Full Code Here

    try  {
      //Unescape everything that needs to be.
      crla_objects.usAll2BEsc.unescape(ssb_value);

    catch(UnescapeStringException usx)  {
      throw new ConfigFormatException("constructor (LINE " + i_startLine + "):  Attempting to unescape all to-be-escaped strings from the value ('" + crla_objects.uSOB.getVisible(ssb_value) + "')..." + usx.toString());
    }
  }
View Full Code Here

TOP

Related Classes of com.uic.ase.proj.xbn.config.ConfigFormatException

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.