Uses of Class
com.reverseXSL.parser.ParserException

Packages that use ParserException
com.reverseXSL.parser   
com.reverseXSL.transform   
com.reverseXSL.util   
 

Uses of ParserException in com.reverseXSL.parser
 

Subclasses of ParserException in com.reverseXSL.parser
static class ParserException.DEFErrorBadCONDName
          D024 DEF file error!
static class ParserException.DEFErrorBadCUTFunction
          D021 DEF file error!
static class ParserException.DEFErrorBadDepth
          D005 DEF file error!
static class ParserException.DEFErrorBadDepthVersusCOND
          D027 DEF file error!
static class ParserException.DEFErrorCardinalityCRequired
          D011 DEF file error!
static class ParserException.DEFErrorCardinalityMORequired
          D012 DEF file error!
static class ParserException.DEFErrorDuplicateCOND
          D013 DEF file error!
static class ParserException.DEFErrorExpectedEND
          D014 DEF file error!
static class ParserException.DEFErrorExtraChars
          D002 DEF file error!
static class ParserException.DEFErrorInvalidEndOfDataDEF
          D036 DEF file error!
static class ParserException.DEFErrorInvalidRegex
          D037 DEF file error!
static class ParserException.DEFErrorInvalidSetting
          D039 DEF file error!
static class ParserException.DEFErrorInvalidSyntax
          D001 DEF file error!
static class ParserException.DEFErrorMissingCapturingGroup
          D009 DEF file error!
static class ParserException.DEFErrorMissingChild
          D004 DEF file error!
static class ParserException.DEFErrorMSGatDepth0
          D023 DEF file error!
static class ParserException.DEFErrorMSGisM11ACC1
          D022 DEF file error!
static class ParserException.DEFErrorNOTAGNotAllowed
          D010 DEF file error!
static class ParserException.DEFErrorNOTAGwithNamespace
          D038 DEF file error!
static class ParserException.DEFErrorOverDepth
          D003 DEF file error!
static class ParserException.DEFErrorUnexpectedEOF
          D007 DEF file error!
static class ParserException.DEFErrorWhatElement
          D006 DEF file error!
static class ParserException.ParserCONDError
          P026 Parsing error about condition [{0}]({1}), context [{2}] at L:{3} O:{4}, impact [{5}].
static class ParserException.ParserDataError
          P013 Parsing error about element <{0}>({1}), context [{2}] at L:{3} O:{4}, impact [{5}].
static class ParserException.ParserDataOverSized
          P023 Data element value [{1}] is over maximum size of [{0}].
static class ParserException.ParserDataUnderSized
          P022 Data element value [{1}] is under minimum size of [{0}].
static class ParserException.ParserErrorDepthBelowCOND
          P016 Named Condition Tokens were collected at a smaller depth than the depth scope of COND [{0}].
static class ParserException.ParserErrorOccBelowMin
          P018 Found [{0}] element occurences below required minimum [{1}].
static class ParserException.ParserErrorOccOverMax
          P019 Found [{0}] element occurences over expected maximum [{1}].
static class ParserException.ParserExceededAllExceptions
          P015 Parsing Exceeded [{0}] overall exceptions threshold.
static class ParserException.ParserExceededFATALExceptions
          P014 Parsing Exceeded [{0}] FATAL exceptions threshold.
static class ParserException.ParserFailedCOND
          P017 Named CONDition [{0}] failed!
static class ParserException.ParserHasNothingToMatch
          Most of the following exceptions share a fixed set or arguments describing the source of the problem with the reference to the impacted item.
static class ParserException.ParserInputNotExhausted
          P012 Data [{0}] left in input after end of matching the message definition.
static class ParserException.ParserInternalError
          P001 Parser internal error!
static class ParserException.ParserInternalErrorEmptyDEF
          P025 Parser internal error!
static class ParserException.ParserInvalidValue
          P005 Data value invalid versus [{0}]!
static class ParserException.ParserLicenceWarning
          P027 WARNING!
static class ParserException.ParserMessageIdentificationFailure
          P011 Failed identification of the whole message!
static class ParserException.ParserMissingMandatoryElt
          P006 Missing mandatory data element [{0}]!
static class ParserException.ParserMissingMandatoryGroup
          P008 Missing mandatory group [{0}]!
static class ParserException.ParserMissingMandatorySeg
          P007 Missing mandatory segment [{0}]!
static class ParserException.ParserNoMatchingDef
          P010 Unexpected Data found!
static class ParserException.ParserNoMsgEletsFound
          P003 The parser failed to match any of the constituent elements of the message itself!
static class ParserException.ParserNowBacktracking
          P020 Failed [{0}] times to match mandatory elements, now backtracking!
static class ParserException.ParserPrematureEndOfData
          P009 End of data while still having this mandatory element [{0}] to match.
static class ParserException.ParserTryingToSkip
          P024 Unexpected Data found!
static class ParserException.ParserUnableTo
          P004 Parser is unable to [{0}]!
 

Methods in com.reverseXSL.parser that return ParserException
 ParserException Parser.ExceptionListIterator.nextException()
           
 ParserException Parser.ExceptionListIterator.nextFatalException()
           
 

Methods in com.reverseXSL.parser that throw ParserException
 void Definition.loadDefinition(java.io.LineNumberReader inputDEF)
          Build a Definition object from a LineNumberReader containing a complete DEF file.
 int Parser.parse(java.lang.String msgID, java.io.LineNumberReader dataIn, int startLineNb)
          Parses an input character stream using a LineNumberReader.
 int Parser.parse(java.lang.String msgID, java.lang.String dataIn, int startLineNb)
          Variant parse method starting from a string and falling back onto the other Parser.parse(String, LineNumberReader, int) method whenever the system discovers that the cut function at the Message level is CUT-ON-NL.
 

Uses of ParserException in com.reverseXSL.transform
 

Methods in com.reverseXSL.transform that throw ParserException
 int Transformer.printableTransform(java.io.InputStream in, java.lang.StringBuffer out)
          A variant of Transformer.transform(InputStream, OutputStream) that guarantees a nice indentation of XML outputs; neutral operation for other brands.
 int Transformer.transform(java.io.InputStream in, java.io.OutputStream out)
          Reads a message from the InputStream (till no more bytes are available) and then transforms it according to Parsing and XSL Transformation steps defined in the Mapping Selection Table.
 

Constructors in com.reverseXSL.transform with parameters of type ParserException
TransformerMessage.ExceptionReport(int rank, ParserException pe)
           
 

Uses of ParserException in com.reverseXSL.util
 

Methods in com.reverseXSL.util that throw ParserException
 void RegexCheck.regexTest(java.lang.String regex, java.lang.String target)