Searched refs:SAXException (Results 26 - 50 of 475) sorted by relevance

1234567891011>>

/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/jaxp/validation/
H A DWrappedSAXException.java63 import org.xml.sax.SAXException;
66 * Wraps {@link SAXException} and make it an unchecked exception.
68 * Xerces XNI doesn't allow {@link SAXException} to be thrown.
76 * kind of SAXException tunneling.
82 public final SAXException exception;
84 WrappedSAXException( SAXException e ) {
H A DDraconianErrorHandler.java24 import org.xml.sax.SAXException;
48 public void warning(SAXParseException e) throws SAXException {
53 public void error(SAXParseException e) throws SAXException {
58 public void fatalError(SAXParseException e) throws SAXException {
H A DValidatorHelper.java28 import org.xml.sax.SAXException;
39 throws SAXException, IOException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/
H A DEncodingAlgorithmContentHandler.java30 import org.xml.sax.SAXException;
86 * @throws org.xml.sax.SAXException any SAX exception, possibly
90 public void octets(String URI, int algorithm, byte[] b, int start, int length) throws SAXException;
102 * @throws org.xml.sax.SAXException any SAX exception, possibly
106 public void object(String URI, int algorithm, Object o) throws SAXException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/
H A DPatcherManager.java29 import org.xml.sax.SAXException;
46 void reportError( String message, Locator source ) throws SAXException;
50 void run() throws SAXException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/
H A DIDResolver.java34 import org.xml.sax.SAXException;
65 * decided to abort, the implementation should throw a {@link SAXException}.
83 public void startDocument(ValidationEventHandler eventHandler) throws SAXException {
94 public void endDocument() throws SAXException {
118 public abstract void bind( String id, Object obj ) throws SAXException;
145 * any exception other than a {@link SAXException} (which means a fatal error.)
159 public abstract Callable<?> resolve( String id, Class targetType ) throws SAXException;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/serializer/
H A DExtendedContentHandler.java27 import org.xml.sax.SAXException;
59 * @throws SAXException
68 throws SAXException;
72 * @throws SAXException
75 throws org.xml.sax.SAXException;
89 * @throws SAXException
91 public void characters(String chars) throws SAXException;
97 * @throws SAXException
99 public void characters(org.w3c.dom.Node node) throws org.xml.sax.SAXException;
110 * @throws SAXException
[all...]
H A DEmptySerializer.java39 import org.xml.sax.SAXException;
63 protected void couldThrowSAXException() throws SAXException
68 protected void couldThrowSAXException(char[] chars, int off, int len) throws SAXException
73 protected void couldThrowSAXException(String elemQName) throws SAXException
162 public boolean setEscaping(boolean escape) throws SAXException
234 public void flushPending() throws SAXException
248 throws SAXException
255 public void addAttributes(Attributes atts) throws SAXException
270 public void characters(String chars) throws SAXException
277 public void endElement(String elemName) throws SAXException
[all...]
H A DExtendedLexicalHandler.java25 import org.xml.sax.SAXException;
38 * @throws SAXException
40 public void comment(String comment) throws SAXException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/sax/
H A DSAXDocumentSerializer.java41 import org.xml.sax.SAXException;
82 public final void startDocument() throws SAXException {
88 throw new SAXException("startDocument", e);
92 public final void endDocument() throws SAXException {
96 throw new SAXException("endDocument", e);
100 public void startPrefixMapping(String prefix, String uri) throws SAXException {
115 throw new SAXException("startElement", e);
119 public final void startElement(String namespaceURI, String localName, String qName, Attributes atts) throws SAXException {
151 throw new SAXException("startElement", e);
153 throw new SAXException("startElemen
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/tools/
H A DSAX2StAXWriter.java38 import org.xml.sax.SAXException;
63 public void startDocument() throws SAXException {
68 throw new SAXException(e);
72 public void endDocument() throws SAXException {
78 throw new SAXException(e);
83 throws SAXException
89 throw new SAXException(e);
94 String qName, Attributes atts) throws SAXException
116 throw new SAXException(e);
121 String qName) throws SAXException
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/jxc/gen/config/
H A DNGCCEventSource.java29 import org.xml.sax.SAXException;
44 void sendEnterElement( int receiverThreadId, String uri, String local, String qname, Attributes atts ) throws SAXException;
46 void sendLeaveElement( int receiverThreadId, String uri, String local, String qname ) throws SAXException;
47 void sendEnterAttribute( int receiverThreadId, String uri, String local, String qname ) throws SAXException;
48 void sendLeaveAttribute( int receiverThreadId, String uri, String local, String qname ) throws SAXException;
49 void sendText( int receiverThreadId, String value ) throws SAXException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/parser/state/
H A DNGCCEventSource.java29 import org.xml.sax.SAXException;
44 void sendEnterElement( int receiverThreadId, String uri, String local, String qname, Attributes atts ) throws SAXException;
46 void sendLeaveElement( int receiverThreadId, String uri, String local, String qname ) throws SAXException;
47 void sendEnterAttribute( int receiverThreadId, String uri, String local, String qname ) throws SAXException;
48 void sendLeaveAttribute( int receiverThreadId, String uri, String local, String qname ) throws SAXException;
49 void sendText( int receiverThreadId, String value ) throws SAXException;
/openjdk7/jdk/src/share/classes/com/sun/rowset/internal/
H A DXmlErrorHandler.java46 public void error(SAXParseException e) throws SAXException {
51 public void fatalError(SAXParseException e) throws SAXException {
56 public void warning(SAXParseException exception) throws SAXException {
/openjdk7/jaxp/src/org/xml/sax/
H A DParser.java88 * @exception org.xml.sax.SAXException Throws an exception
91 * @see org.xml.sax.SAXException
95 throws SAXException;
160 * ignored, except for fatalError, which will throw a SAXException
169 * @see SAXException
190 * @exception org.xml.sax.SAXException Any SAX exception, possibly
203 throws SAXException, IOException;
221 * @exception org.xml.sax.SAXException Any SAX exception, possibly
229 throws SAXException, IOException;
H A DSAXNotRecognizedException.java53 public class SAXNotRecognizedException extends SAXException
H A DSAXNotSupportedException.java53 public class SAXNotSupportedException extends SAXException
H A DDTDHandler.java99 * @exception org.xml.sax.SAXException Any SAX exception, possibly
107 throws SAXException;
123 * @exception org.xml.sax.SAXException Any SAX exception, possibly
137 throws SAXException;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/
H A DFragmentContentHandler.java29 import org.xml.sax.SAXException;
50 public void startDocument() throws SAXException {
54 public void endDocument() throws SAXException {
H A DSAXException2.java28 import org.xml.sax.SAXException;
31 * {@link SAXException} that handles exception chaining correctly.
36 public class SAXException2 extends SAXException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/impl/util/
H A DDraconianErrorHandler.java29 import org.xml.sax.SAXException;
36 public void error( SAXParseException e ) throws SAXException {
39 public void fatalError( SAXParseException e ) throws SAXException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/api/impl/s2j/
H A DDowngradingErrorHandler.java29 import org.xml.sax.SAXException;
44 public void warning(SAXParseException exception) throws SAXException {
48 public void error(SAXParseException exception) throws SAXException {
52 public void fatalError(SAXParseException exception) throws SAXException {
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DFatalAdapter.java30 import org.xml.sax.SAXException;
44 public void warning (SAXParseException exception) throws SAXException {
48 public void error (SAXParseException exception) throws SAXException {
52 public void fatalError (SAXParseException exception) throws SAXException {
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/trax/
H A DSAX2StAXBaseWriter.java36 import org.xml.sax.SAXException;
82 public void error(SAXParseException e) throws SAXException {
86 public void fatalError(SAXParseException e) throws SAXException {
90 public void warning(SAXParseException e) throws SAXException {
94 public void startDocument() throws SAXException {
98 public void endDocument() throws SAXException {
103 Attributes attributes) throws SAXException {
108 throws SAXException {
113 throws SAXException {
129 public void endPrefixMapping(String prefix) throws SAXException {
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/
H A DTransletException.java26 import org.xml.sax.SAXException;
33 public final class TransletException extends SAXException {

Completed in 80 milliseconds

1234567891011>>