Methods Summary |
---|
public static oracle.toplink.essentials.exceptions.XMLParseException | exceptionCreatingDocumentBuilder(java.lang.String xmlDocument, java.lang.Exception cause)INTERNAL:
return XMLParseException.getXMLParseException(new Object[] {xmlDocument}, cause, EXCEPTION_CREATING_DOCUMENT_BUILDER);
|
public static oracle.toplink.essentials.exceptions.XMLParseException | exceptionCreatingSAXParser(java.net.URL url, java.lang.Exception cause)INTERNAL:
return XMLParseException.getXMLParseException(new Object[] {url}, cause, EXCEPTION_CREATING_SAX_PARSER);
|
public static oracle.toplink.essentials.exceptions.XMLParseException | exceptionCreatingXMLReader(java.net.URL url, java.lang.Exception cause)INTERNAL:
return XMLParseException.getXMLParseException(new Object[] {url}, cause, EXCEPTION_CREATING_XML_READER);
|
public static oracle.toplink.essentials.exceptions.XMLParseException | exceptionReadingXMLDocument(java.lang.String xmlDocument, java.lang.Exception cause)INTERNAL:
return XMLParseException.getXMLParseException(new Object[] {xmlDocument}, cause, EXCEPTION_READING_XML_DOCUMENT);
|
public static oracle.toplink.essentials.exceptions.XMLParseException | exceptionSettingSchemaSource(java.net.URL baseUrl, java.net.URL schemaUrl, java.lang.Exception cause)INTERNAL:
return XMLParseException.getXMLParseException(new Object[] {baseUrl, schemaUrl}, cause, EXCEPTION_SETTING_SCHEMA_SOURCE);
|
private static oracle.toplink.essentials.exceptions.XMLParseException | getXMLParseException(java.lang.Object[] args, java.lang.Exception cause, int errorCode)
XMLParseException parseException = new XMLParseException(ExceptionMessageGenerator.buildMessage(XMLParseException.class, errorCode, args), cause);
parseException.setErrorCode(errorCode);
return parseException;
|