mirror of https://github.com/apache/lucene.git
- Fix to support pre-1.4 JDKs.
git-svn-id: https://svn.apache.org/repos/asf/lucene/java/trunk@149930 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
4d390e5be7
commit
77eb6fb06b
|
@ -172,7 +172,7 @@ public abstract class Query implements java.io.Serializable, Cloneable {
|
|||
try {
|
||||
return (Query)super.clone();
|
||||
} catch (CloneNotSupportedException e) {
|
||||
throw new RuntimeException(e);
|
||||
throw new RuntimeException("Clone not supported: " + e.getMessage());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue