- 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:
Otis Gospodnetic 2003-01-15 15:41:52 +00:00
parent 4d390e5be7
commit 77eb6fb06b
1 changed files with 1 additions and 1 deletions

View File

@ -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());
}
}
}