Searched refs:XMLParseException (Results 1 - 20 of 20) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xni/parser/
H A DXMLErrorHandler.java58 XMLParseException exception) throws XNIException;
77 XMLParseException exception) throws XNIException;
104 XMLParseException exception) throws XNIException;
H A DXMLParseException.java34 public class XMLParseException class in inherits:XNIException
70 public XMLParseException(XMLLocator locator, String message) { method in class:XMLParseException
84 public XMLParseException(XMLLocator locator, method in class:XMLParseException
181 } // XMLParseException
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DErrorHandlerAdaptor.java64 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
96 public void fatalError( String domain, String key, XMLParseException e ) {
105 public void error( String domain, String key, XMLParseException e ) {
114 public void warning( String domain, String key, XMLParseException e ) {
H A DUtil.java27 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
61 if(e instanceof XMLParseException)
62 return toSAXParseException((XMLParseException)e);
68 public static SAXParseException toSAXParseException( XMLParseException e ) {
H A DStreamValidatorHelper.java43 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
153 catch (XMLParseException e) {
H A DValidatorHandlerImpl.java67 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
497 catch (XMLParseException e) {
510 catch (XMLParseException e) {
567 catch (XMLParseException e) {
581 catch (XMLParseException e) {
598 catch (XMLParseException e) {
612 catch (XMLParseException e) {
H A DDOMValidatorHelper.java49 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
193 catch (XMLParseException e) {
/openjdk7/jdk/src/share/classes/javax/management/modelmbean/
H A DXMLParseException.java53 public class XMLParseException class in inherits:Exception
103 public XMLParseException () method in class:XMLParseException
113 public XMLParseException (String s) method in class:XMLParseException
123 public XMLParseException (Exception e, String s) method in class:XMLParseException
129 * Deserializes an {@link XMLParseException} from an {@link ObjectInputStream}.
139 * Serializes an {@link XMLParseException} to an {@link ObjectOutputStream}.
H A DDescriptorSupport.java256 * @exception XMLParseException XML parsing problem while parsing
267 XMLParseException {
289 throw new XMLParseException("No <descriptor>, </descriptor> pair");
343 throw new XMLParseException(msg);
348 throw new XMLParseException(msg);
1172 private static String unquote(String s) throws XMLParseException {
1174 throw new XMLParseException("Value must be quoted: <" + s + ">");
1236 throws XMLParseException {
1258 throw new XMLParseException(e,
1268 throw new XMLParseException(
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/util/
H A DErrorHandlerWrapper.java26 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
96 XMLParseException exception) throws XNIException {
112 } // warning(String,String,XMLParseException)
131 XMLParseException exception) throws XNIException {
147 } // error(String,String,XMLParseException)
174 XMLParseException exception) throws XNIException {
190 } // fatalError(String,String,XMLParseException)
196 /** Creates a SAXParseException from an XMLParseException. */
197 protected static SAXParseException createSAXParseException(XMLParseException exception) {
204 } // createSAXParseException(XMLParseException)
[all...]
H A DDefaultErrorHandler.java27 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
70 public void warning(String domain, String key, XMLParseException ex)
73 } // warning(XMLParseException)
76 public void error(String domain, String key, XMLParseException ex)
79 } // error(XMLParseException)
82 public void fatalError(String domain, String key, XMLParseException ex)
86 } // fatalError(XMLParseException)
93 private void printError(String type, XMLParseException ex) {
H A DDOMErrorHandlerWrapper.java25 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
130 XMLParseException exception) throws XNIException {
147 } // warning(String,String,XMLParseException)
166 XMLParseException exception) throws XNIException {
183 } // error(String,String,XMLParseException)
210 XMLParseException exception) throws XNIException {
228 } // fatalError(String,String,XMLParseException)
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/xpointer/
H A DXPointerErrorHandler.java26 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
68 public void warning(String domain, String key, XMLParseException ex)
71 } // warning(XMLParseException)
74 public void error(String domain, String key, XMLParseException ex)
78 } // error(XMLParseException)
81 public void fatalError(String domain, String key, XMLParseException ex)
85 } // fatalError(XMLParseException)
92 private void printError(String type, XMLParseException ex) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/dom/
H A DDOMErrorImpl.java25 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
45 // we probably should not pass XMLParseException
72 public DOMErrorImpl (short severity, XMLParseException exception) {
104 private DOMLocatorImpl createDOMLocator(XMLParseException exception) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DSchemaContentHandler.java33 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
108 catch (XMLParseException e) {
124 catch (XMLParseException e) {
186 catch (XMLParseException e) {
202 catch (XMLParseException e) {
221 catch (XMLParseException e) {
237 catch (XMLParseException e) {
253 catch (XMLParseException e) {
352 static void convertToSAXParseException(XMLParseException e) throws SAXException {
365 // why did we create an XMLParseException
[all...]
H A DXSDHandler.java92 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
2437 throw new XMLParseException(slw, e.getMessage(), e);
4313 public static XMLParseException createXMLParseException0(SAXParseException exception) {
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/
H A DXMLErrorReporter.java75 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
417 XMLParseException parseException = (exception != null) ?
418 new XMLParseException(location, message, exception) :
419 new XMLParseException(location, message);
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/parsers/
H A DDOMParser.java38 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
179 catch (XMLParseException e) {
192 // why did we create an XMLParseException?
241 catch (XMLParseException e) {
254 // why did we create an XMLParseException?
H A DAbstractSAXParser.java47 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
1141 catch (XMLParseException e) {
1166 // why did we create an XMLParseException?
1214 catch (XMLParseException e) {
1239 // why did we create an XMLParseException?
H A DDOMParserImpl.java56 import com.sun.org.apache.xerces.internal.xni.parser.XMLParseException;
948 if (!(e instanceof XMLParseException) && fErrorHandler != null) {
1005 if (!(e instanceof XMLParseException) && fErrorHandler != null) {

Completed in 89 milliseconds