Searched defs:error (Results 1 - 21 of 21) sorted by relevance

/glassfish-3.1.2/common/annotation-framework/src/main/java/org/glassfish/apf/
H A DErrorHandler.java50 * Receive notication of a fine error message
66 * Receive notification of an error
67 * @param ape The error information
70 public void error(AnnotationProcessorException ape) throws method in interface:ErrorHandler
/glassfish-3.1.2/common/annotation-framework/src/main/java/org/glassfish/apf/impl/
H A DDefaultErrorHandler.java74 * Receive notication of a fine error message
87 "enterprise.deployment.annotation.error",
109 "enterprise.deployment.annotation.error",
117 * Receive notification of an error
118 * @param ape The error information
121 public void error(AnnotationProcessorException ape) throws method in class:DefaultErrorHandler
129 "enterprise.deployment.annotation.error",
/glassfish-3.1.2/ant-tasks/src/main/java/org/glassfish/ant/embedded/tasks/
H A DTaskBase.java54 void error(String message) throws BuildException { method in class:TaskBase
61 void error(Exception ex) throws BuildException { method in class:TaskBase
/glassfish-3.1.2/common/common-util/src/main/java/com/sun/enterprise/util/
H A DResult.java52 final Throwable error; field in class:Result
56 error = null;
61 this.error = t;
65 return error==null;
77 return error;
/glassfish-3.1.2/admin/cli-optional/src/main/java/com/sun/enterprise/admin/cli/optional/
H A DDomainXmlVerifier.java84 public boolean error; field in class:DomainXmlVerifier
96 error = false;
100 * Returns true if there is an error in the domain.xml or some other problem.
116 if (!error)
119 error = true;
122 return error;
205 error = true;
232 // we have a duplicate. So output that error
237 error = true;
/glassfish-3.1.2/admin/rest/src/main/java/org/glassfish/admin/rest/readers/
H A DInputReader.java120 * Resturns InputException to signal a syntax error.
122 * @param message The error message.
125 public InputException error(String message) { method in class:InputReader
151 * Substring bounds error if there are not
179 throw error("Substring bounds error");
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/
H A DResultManager.java48 * This class is responsible for collecting the result and error data
61 error.add(logRecord);
73 return (error == null) ? 0 : error.size();
93 return error;
119 private Vector<LogRecord> error = new Vector<LogRecord>(); field in class:ResultManager
/glassfish-3.1.2/verifier/verifier-impl/src/main/java/com/sun/enterprise/tools/verifier/util/
H A DXMLValidationHandler.java162 public void error(SAXParseException spe) throws SAXParseException { method in class:XMLValidationHandler
/glassfish-3.1.2/persistence/cmp/support-ejb/src/main/java/com/sun/jdo/spi/persistence/support/ejb/ejbqlc/
H A DErrorMsg.java54 * This is a helper class to report error messages from the EJBQL compiler.
68 * This method throws an EJBQLException indicating an user error.
71 * @param text error message
72 * @exception EJBQLException describes the user error.
74 public static void error(int line, int col, String text) method in class:ErrorMsg
98 * This method throws an EJBQLException indicating an user error.
99 * @param text error message
100 * @param cause the cause of the error
101 * @exception EJBQLException describes the user error.
103 public static void error(Strin method in class:ErrorMsg
114 public static void error(String text) method in class:ErrorMsg
[all...]
/glassfish-3.1.2/persistence/cmp/support-sqlstore/src/main/java/com/sun/jdo/spi/persistence/support/sqlstore/query/jqlc/
H A DErrorMsg.java95 * Indicates an error situation.
98 * @param msg error message
100 public void error(int line, int col, String msg) method in class:ErrorMsg
124 logger.throwing("jqlc.ErrorMsg", "error", ex);
164 * Indicates a fatal situation (implementation error).
165 * @param msg error message
176 * Indicates a fatal situation (implementation error).
177 * @param msg error message
/glassfish-3.1.2/webservices/jsr109-impl/src/main/java/org/glassfish/webservices/
H A DWsCompile.java99 // true if wscompile encountered an error.
100 private boolean error = false; field in class:WsCompile
141 error = true;
146 if( !error) {
159 if( !error ) {
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/connector/
H A DCoyoteWriter.java96 protected boolean error = false; field in class:CoyoteWriter
134 error = false;
149 if (error)
155 error = true;
176 error = false;
188 return error;
200 if (error)
206 error = true;
220 if (error)
226 error
[all...]
H A DResponse.java306 * The error flag.
308 protected boolean error = false; field in class:Response
354 error = false;
518 * Set the error flag.
521 error = true;
529 return error;
535 * Sets detail error message.
537 * @param message detail error message
545 * Gets detail error message.
547 * @return the detail error messag
[all...]
/glassfish-3.1.2/installer/src/cpp/share/launcher/zlib-1.1.4/
H A Dminigzip.c76 void error OF((const char *msg));
87 * Display error message and exit
89 void error(msg) function
122 if (gzwrite(out, buf, (unsigned)len) != len) error(gzerror(out, &err));
125 if (gzclose(out) != Z_OK) error("failed gzclose");
156 if (len != (int)buf_len) error(gzerror(out, &err));
160 if (gzclose(out) != Z_OK) error("failed gzclose");
178 if (len < 0) error (gzerror(in, &err));
182 error("failed fwrite");
185 if (fclose(out)) error("faile
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/catalina/startup/
H A DContextConfig.java169 * Any parse error which occurred while parsing XML descriptors.
1302 public void error(SAXParseException exception) { method in class:ContextConfig.ContextErrorHandler
/glassfish-3.1.2/web/web-glue/src/main/java/com/sun/appserv/web/cache/filter/
H A DCachingResponseWrapper.java89 * Error flag. True if the response runs into an error.
90 * Should not treat the response to be in the error state if the servlet
94 boolean error = false; field in class:CachingResponseWrapper
114 * @exception IOException if an input/output error occurs
126 * @exception IOException if an input/output error occurs
144 * @exception IOException if an input/output error occurs
318 * Send an error response with the specified status and a
325 * @exception IOException if an input/output error occurs
330 error = true;
334 * Send an error respons
[all...]
/glassfish-3.1.2/deployment/dol/src/main/java/com/sun/enterprise/deployment/node/
H A DSaxParserHandler.java263 public void error(SAXParseException spe) throws SAXParseException { method in class:SaxParserHandler
565 * Sets the error reporting context string
/glassfish-3.1.2/admin/util/src/main/java/org/glassfish/admin/cli/resources/
H A DResourcesXMLParser.java196 //And throw proper error message if DOCTYPE is missing
1495 public void error(SAXParseException e) throws org.xml.sax.SAXException{ method in class:ResourcesXMLParser.AddResourcesErrorHandler
/glassfish-3.1.2/persistence/cmp/enhancer/src/main/java/com/sun/jdo/api/persistence/enhancer/impl/
H A DEnvironment.java63 //@lars added: field for last error message
97 /* Writer for error output. */
204 /* Last error message */
217 //@olsen: subst: param err -> error
218 public void error(String error) { argument
226 error));
464 error(getI18N("enhancer.class_already_entered",//NOI18N
646 error(getI18N("destination_directory_already_set",//NOI18N
652 error(getI18
[all...]
/glassfish-3.1.2/web/web-core/src/main/java/org/apache/tomcat/util/digester/
H A DDigester.java220 * The application-supplied error handler that is notified when parsing
499 * Return the error handler for this Digester.
509 * Set the error handler for this Digester.
511 * @param errorHandler The new error handler
544 * @exception ParserConfigurationException if a parser configuration error
573 * @exception ParserConfigurationException if a parser configuration error
1034 * @exception SAXException if a parsing error is to be reported
1051 * @exception SAXException if a parsing error is to be reported
1078 log.log(Level.SEVERE, "Finish event threw error", e);
1099 * @exception SAXException if a parsing error i
1561 public void error(SAXParseException exception) throws SAXException { method in class:Digester
[all...]
/glassfish-3.1.2/installer/src/cpp/share/launcher/
H A Djava_md.unix.c85 #error JNI_MD_SYSNAME must be defined for this platform
185 #error RES_BUNDLE_NAME macro must be set
227 goto error;
240 goto error;
272 goto error;
284 error:
383 HandleX11Error(Display *display, XErrorEvent *error) argument
466 goto error;
472 if ((x11funcs->XCloseDisplay = (XCloseDisplay_t)dlsym(libgui, "XCloseDisplay")) == NULL) goto error;
473 if ((x11funcs->XOpenDisplay = (XOpenDisplay_t)dlsym(libgui, "XOpenDisplay")) == NULL) goto error;
[all...]

Completed in 327 milliseconds