Searched refs:XMLMessages (Results 1 - 24 of 24) sorted by relevance

/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/utils/
H A DQName.java29 import com.sun.org.apache.xml.internal.res.XMLMessages;
113 throw new IllegalArgumentException(XMLMessages.createXMLMessage(
120 throw new IllegalArgumentException(XMLMessages.createXMLMessage(
160 throw new IllegalArgumentException(XMLMessages.createXMLMessage(
167 throw new IllegalArgumentException(XMLMessages.createXMLMessage(
173 throw new IllegalArgumentException(XMLMessages.createXMLMessage(
210 throw new IllegalArgumentException(XMLMessages.createXMLMessage(
217 throw new IllegalArgumentException(XMLMessages.createXMLMessage(
295 XMLMessages.createXMLMessage(
308 throw new IllegalArgumentException(XMLMessages
[all...]
H A DObjectPool.java28 import com.sun.org.apache.xml.internal.res.XMLMessages;
144 throw new RuntimeException(XMLMessages.createXMLMessage(XMLErrorResources.ER_EXCEPTION_CREATING_POOL, null)); //"exception creating new instance for pool");
H A DDefaultErrorHandler.java33 import com.sun.org.apache.xml.internal.res.XMLMessages;
336 ? locator.getSystemId() : XMLMessages.createXMLMessage(XMLErrorResources.ER_SYSTEMID_UNKNOWN, null); //"SystemId Unknown";
338 pw.print(id + "; " +XMLMessages.createXMLMessage("line", null) + locator.getLineNumber()
339 + "; " +XMLMessages.createXMLMessage("column", null) + locator.getColumnNumber()+"; ");
342 pw.print("("+XMLMessages.createXMLMessage(XMLErrorResources.ER_LOCATION_UNKNOWN, null)+")");
H A DURI.java30 import com.sun.org.apache.xml.internal.res.XMLMessages;
293 throw new MalformedURIException(XMLMessages.createXMLMessage(XMLErrorResources.ER_SCHEME_REQUIRED, null)); //"Scheme is required!");
301 XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_USERINFO_IF_NO_HOST, null)); //"Userinfo may not be specified if host is not specified!");
307 XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_PORT_IF_NO_HOST, null)); //"Port may not be specified if host is not specified!");
316 XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_QUERY_STRING_IN_PATH, null)); //"Query string cannot be specified in path and query string!");
322 XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_FRAGMENT_STRING_IN_PATH, null)); //"Fragment cannot be specified in both the path and fragment!");
376 XMLMessages.createXMLMessage(XMLErrorResources.ER_CANNOT_INIT_URI_EMPTY_PARMS, null)); //"Cannot initialize URI with empty parameters.");
397 throw new MalformedURIException(XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_SCHEME_IN_URI, new Object[]{uriSpec})); //"No scheme found in URI: "+uriSpec);
629 throw new MalformedURIException(XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_SCHEME_INURI, null)); //"No scheme found in URI.");
780 XMLMessages
[all...]
H A DDOMBuilder.java28 import com.sun.org.apache.xml.internal.res.XMLMessages;
206 XMLMessages.createXMLMessage(
219 XMLMessages.createXMLMessage(
H A DListingErrorHandler.java38 import com.sun.org.apache.xml.internal.res.XMLMessages;
66 throw new NullPointerException(XMLMessages.createXMLMessage(XMLErrorResources.ER_ERRORHANDLER_CREATED_WITH_NULL_PRINTWRITER, null));
H A DDOMHelper.java35 import com.sun.org.apache.xml.internal.res.XMLMessages;
109 XMLMessages.createXMLMessage(
1044 XMLMessages.createXMLMessage(
H A DUnImplNode.java26 import com.sun.org.apache.xml.internal.res.XMLMessages;
70 throw new RuntimeException(XMLMessages.createXMLMessage(msg, null));
84 throw new RuntimeException(XMLMessages.createXMLMessage(msg, args)); //"UnImplNode error: "+msg);
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DCoroutineManager.java28 import com.sun.org.apache.xml.internal.res.XMLMessages;
266 throw new java.lang.NoSuchMethodException(XMLMessages.createXMLMessage(XMLErrorResources.ER_COROUTINE_NOT_AVAIL, new Object[]{Integer.toString(toCoroutine)})); //"Coroutine not available, id="+toCoroutine);
294 throw new java.lang.NoSuchMethodException(XMLMessages.createXMLMessage(XMLErrorResources.ER_COROUTINE_CO_EXIT, null)); //"CoroutineManager recieved co_exit() request");
335 throw new java.lang.NoSuchMethodException(XMLMessages.createXMLMessage(XMLErrorResources.ER_COROUTINE_NOT_AVAIL, new Object[]{Integer.toString(toCoroutine)})); //"Coroutine not available, id="+toCoroutine);
H A DChunkedIntArray.java26 import com.sun.org.apache.xml.internal.res.XMLMessages;
62 throw new ArrayIndexOutOfBoundsException(XMLMessages.createXMLMessage(XMLErrorResources.ER_CHUNKEDINTARRAY_NOT_SUPPORTED, new Object[]{Integer.toString(slotsize)})); //"ChunkedIntArray("+slotsize+") not currently supported");
124 throw new ArrayIndexOutOfBoundsException(XMLMessages.createXMLMessage(XMLErrorResources.ER_OFFSET_BIGGER_THAN_SLOT, null)); //"Offset bigger than slot");
205 throw new ArrayIndexOutOfBoundsException(XMLMessages.createXMLMessage(XMLErrorResources.ER_OFFSET_BIGGER_THAN_SLOT, null)); //"Offset bigger than slot");
H A DIncrementalSAXSource_Xerces.java32 import com.sun.org.apache.xml.internal.res.XMLMessages;
270 throw new SAXException(XMLMessages.createXMLMessage(XMLErrorResources.ER_STARTPARSE_NEEDS_SAXPARSER, null)); //"startParse needs a non-null SAXParser.");
272 throw new SAXException(XMLMessages.createXMLMessage(XMLErrorResources.ER_STARTPARSE_WHILE_PARSING, null)); //"startParse may not be called while parsing.");
286 throw new SAXException(XMLMessages.createXMLMessage(XMLErrorResources.ER_COULD_NOT_INIT_PARSER, null)); //"could not initialize parser with");
H A DDTMManagerDefault.java43 import com.sun.org.apache.xml.internal.res.XMLMessages;
151 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_DTMIDS_AVAIL, null)); //"No more DTM IDs are available!");
480 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_NOT_SUPPORTED, new Object[]{source})); //"Not supported: " + source);
497 throw new IllegalArgumentException(XMLMessages.createXMLMessage(XMLErrorResources.ER_NODE_NON_NULL, null)); //"node must be non-null for getDTMHandleFromNode!");
579 throw new RuntimeException(XMLMessages.createXMLMessage(XMLErrorResources.ER_COULD_NOT_RESOLVE_NODE, null)); //"Could not resolve the node to a handle!");
H A DIncrementalSAXSource_Filter.java29 import com.sun.org.apache.xml.internal.res.XMLMessages;
137 throw new RuntimeException(XMLMessages.createXMLMessage(XMLErrorResources.ER_COJOINROUTINESET_FAILED, null)); //"co_joinCoroutineSet() failed");
612 throw new SAXException(XMLMessages.createXMLMessage(XMLErrorResources.ER_INCRSAXSRCFILTER_NOT_RESTARTABLE, null)); //"IncrmentalSAXSource_Filter not currently restartable.");
614 throw new SAXException(XMLMessages.createXMLMessage(XMLErrorResources.ER_XMLRDR_NOT_BEFORE_STARTPARSE, null)); //"XMLReader not before startParse request");
H A DDTMDefaultBase.java36 import com.sun.org.apache.xml.internal.res.XMLMessages;
1643 error(XMLMessages.createXMLMessage(XMLErrorResources.ER_METHOD_NOT_SUPPORTED, null));//("getStringValueChunkCount not yet supported!");
1666 error(XMLMessages.createXMLMessage(XMLErrorResources.ER_METHOD_NOT_SUPPORTED, null));//"getStringValueChunk not yet supported!");
1772 error(XMLMessages.createXMLMessage(XMLErrorResources.ER_METHOD_NOT_SUPPORTED, null));//"Not yet supported!");
2237 error(XMLMessages.createXMLMessage(XMLErrorResources.ER_METHOD_NOT_SUPPORTED, null));//"appendChild not yet supported!");
2251 error(XMLMessages.createXMLMessage(XMLErrorResources.ER_METHOD_NOT_SUPPORTED, null));//"appendTextChild not yet supported!");
H A DDTMDefaultBaseIterators.java32 import com.sun.org.apache.xml.internal.res.XMLMessages;
162 throw new DTMException(XMLMessages.createXMLMessage(
229 throw new DTMException(XMLMessages.createXMLMessage(
1291 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_ITERATOR_CLONE_NOT_SUPPORTED, null)); //"Iterator clone not supported.");
1643 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_ITERATOR_CLONE_NOT_SUPPORTED, null)); //"Iterator clone not supported.");
H A DDTMDefaultBaseTraversers.java32 import com.sun.org.apache.xml.internal.res.XMLMessages;
187 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_UNKNOWN_AXIS_TYPE, new Object[]{Integer.toString(axis)})); //"Unknown axis traversal type: "+axis);
191 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_AXIS_TRAVERSER_NOT_SUPPORTED, new Object[]{Axis.getNames(axis)}));
/openjdk7/jaxp/src/com/sun/org/apache/xpath/internal/res/
H A DXPATHMessages.java26 import com.sun.org.apache.xml.internal.res.XMLMessages;
34 public class XPATHMessages extends XMLMessages {
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/
H A DDTMManager.java26 import com.sun.org.apache.xml.internal.res.XMLMessages;
157 throw new DTMConfigurationException(XMLMessages.createXMLMessage(
164 throw new DTMConfigurationException(XMLMessages.createXMLMessage(
H A DDTMException.java32 import com.sun.org.apache.xml.internal.res.XMLMessages;
119 throw new IllegalStateException(XMLMessages.createXMLMessage(XMLErrorResources.ER_CANNOT_OVERWRITE_CAUSE, null)); //"Can't overwrite cause");
124 XMLMessages.createXMLMessage(XMLErrorResources.ER_SELF_CAUSATION_NOT_PERMITTED, null)); //"Self-causation not permitted");
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/res/
H A DXMLMessages.java21 * $Id: XMLMessages.java,v 1.2.4.1 2005/09/15 07:45:48 suresh_emailid Exp $
33 public class XMLMessages class
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/dom/
H A DXSLTCDTMManager.java40 import com.sun.org.apache.xml.internal.res.XMLMessages;
481 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_NOT_SUPPORTED, new Object[]{source}));
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/sax2dtm/
H A DSAX2DTM.java42 import com.sun.org.apache.xml.internal.res.XMLMessages;
707 error(XMLMessages.createXMLMessage(XMLErrorResources.ER_METHOD_NOT_SUPPORTED, null));//"Not yet supported!");
951 error(XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_DTMIDS_AVAIL, null));//"No more DTM IDs are available";
1227 error(XMLMessages.createXMLMessage(XMLErrorResources.ER_METHOD_NOT_SUPPORTED, null));//"Not yet supported!");
H A DSAX2DTM2.java31 import com.sun.org.apache.xml.internal.res.XMLMessages;
849 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_ITERATOR_CLONE_NOT_SUPPORTED, null)); //"Iterator clone not supported.");
1277 throw new DTMException(XMLMessages.createXMLMessage(XMLErrorResources.ER_ITERATOR_CLONE_NOT_SUPPORTED, null)); //"Iterator clone not supported.");
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/dom2dtm/
H A DDOM2DTM.java38 import com.sun.org.apache.xml.internal.res.XMLMessages;
207 error(XMLMessages.createXMLMessage(XMLErrorResources.ER_NO_DTMIDS_AVAIL, null));//"No more DTM IDs are available";

Completed in 116 milliseconds