Searched defs:message (Results 1 - 25 of 53) sorted by relevance

123

/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/
H A DFacetException.java33 public FacetException(String message) { argument
34 super(message);
37 public FacetException(String message, Throwable cause) { argument
38 super(message);
/lucene-3.6.0/lucene/contrib/facet/src/java/org/apache/lucene/facet/taxonomy/
H A DInconsistentTaxonomyException.java32 public InconsistentTaxonomyException(String message) { argument
33 super(message);
/lucene-3.6.0/lucene/contrib/highlighter/src/java/org/apache/lucene/search/highlight/
H A DInvalidTokenOffsetsException.java26 public InvalidTokenOffsetsException(String message) argument
28 super(message);
/lucene-3.6.0/lucene/contrib/xml-query-parser/src/java/org/apache/lucene/xmlparser/
H A DParserException.java34 * @param message
36 public ParserException(String message) { argument
37 super(message);
40 * @param message
43 public ParserException(String message, Throwable cause) { argument
44 super(message, cause);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/index/
H A DCorruptIndexException.java27 public CorruptIndexException(String message) { argument
28 super(message);
H A DFieldReaderException.java24 * detail message. The cause is not initialized, and may subsequently be
32 * detail message of <tt>(cause==null &#63; null : cause.toString())</tt>
33 * (which typically contains the class and detail message of
50 * Constructs a new runtime exception with the specified detail message.
54 * @param message the detail message. The detail message is saved for
57 public FieldReaderException(String message) { argument
58 super(message);
62 * Constructs a new runtime exception with the specified detail message an
75 FieldReaderException(String message, Throwable cause) argument
[all...]
H A DStaleReaderException.java33 public StaleReaderException(String message) { argument
34 super(message);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/store/
H A DAlreadyClosedException.java25 public AlreadyClosedException(String message) { argument
26 super(message);
H A DLockObtainFailedException.java30 public LockObtainFailedException(String message) { argument
31 super(message);
H A DLockReleaseFailedException.java28 public LockReleaseFailedException(String message) { argument
29 super(message);
H A DNoSuchDirectoryException.java28 public NoSuchDirectoryException(String message) { argument
29 super(message);
H A DVerifyingLockFactory.java53 private void verify(byte message) { argument
58 out.write(message);
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/core/
H A DQueryNodeError.java32 private Message message; field in class:QueryNodeError
35 * @param message
38 public QueryNodeError(Message message) { argument
39 super(message.getKey());
41 this.message = message;
54 * @param message
59 public QueryNodeError(Message message, Throwable throwable) { argument
60 super(message.getKey(), throwable);
62 this.message
[all...]
H A DQueryNodeException.java47 protected Message message = new MessageImpl(QueryParserMessages.EMPTY_MESSAGE); field in class:QueryNodeException
49 public QueryNodeException(Message message) { argument
50 super(message.getKey());
52 this.message = message;
60 public QueryNodeException(Message message, Throwable throwable) { argument
61 super(message.getKey(), throwable);
63 this.message = message;
68 return this.message;
[all...]
H A DQueryNodeParseException.java46 public QueryNodeParseException(Message message) { argument
47 super(message);
54 public QueryNodeParseException(Message message, Throwable throwable) { argument
55 super(message, throwable);
60 this.message = new MessageImpl(
80 public void setNonLocalizedMessage(Message message) { argument
81 this.message = message;
/lucene-3.6.0/lucene/contrib/spatial/src/java/org/apache/lucene/spatial/tier/
H A DInvalidGeoException.java33 public InvalidGeoException(String message){ argument
34 super(message);
/lucene-3.6.0/lucene/test-framework/src/java/org/apache/lucene/util/
H A DInternalAssumptionViolatedException.java31 private final String message; field in class:InternalAssumptionViolatedException
33 public InternalAssumptionViolatedException(String message) { argument
34 this(message, null);
37 public InternalAssumptionViolatedException(String message, Throwable t) { argument
42 this.message = message;
52 description.appendText("failed assumption: " + message);
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/client/solrj/
H A DSolrServerException.java29 public SolrServerException(String message, Throwable cause) { argument
30 super(message, cause);
33 public SolrServerException(String message) { argument
34 super(message);
/lucene-3.6.0/lucene/core/src/java/org/apache/lucene/queryParser/
H A DParseException.java25 * print the error message in the form:
55 /** Constructor with message. */
56 public ParseException(String message) { argument
57 super(message);
93 * error message and returns it. If this object has been created
96 * of the final stack trace, and hence the correct error message
/lucene-3.6.0/solr/solrj/src/java/org/apache/solr/common/util/
H A DXMLErrorLogger.java68 public void report(String message, String errorType, Object relatedInformation, Location loc) { argument
74 log.warn(sb.append(": ").append(message).toString());
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/standard/parser/
H A DParseException.java30 * print the error message in the form:
56 /** Constructor with message. */
57 public ParseException(Message message) { argument
58 super(message);
93 * error message and returns it. If this object has been created
96 * of the final stack trace, and hence the correct error message
H A DTokenMgrError.java90 * Returns a detailed message for the Error when it is thrown by the
99 * Note: You can customize the lexical error message by modifying this method.
130 /** Constructor with message and reason. */
131 public TokenMgrError(String message, int reason) { argument
132 super(message);
/lucene-3.6.0/lucene/contrib/queryparser/src/java/org/apache/lucene/queryParser/surround/parser/
H A DParseException.java25 * print the error message in the form:
55 /** Constructor with message. */
56 public ParseException(String message) { argument
57 super(message);
93 * error message and returns it. If this object has been created
96 * of the final stack trace, and hence the correct error message
/lucene-3.6.0/solr/contrib/dataimporthandler/src/java/org/apache/solr/handler/dataimport/
H A DDataImportHandlerException.java41 public DataImportHandlerException(int err, String message) { argument
42 super(message + (SolrWriter.getDocCount() == null ? "" : MSG + SolrWriter.getDocCount()));
46 public DataImportHandlerException(int err, String message, Throwable cause) { argument
47 super(message + (SolrWriter.getDocCount() == null ? "" : MSG + SolrWriter.getDocCount()), cause);
/lucene-3.6.0/lucene/contrib/benchmark/src/java/org/apache/lucene/benchmark/byTask/feeds/demohtml/
H A DParseException.java25 * print the error message in the form:
55 /** Constructor with message. */
56 public ParseException(String message) { argument
57 super(message);
93 * error message and returns it. If this object has been created
96 * of the final stack trace, and hence the correct error message

Completed in 41 milliseconds

123