bring back fully qualified classname
This commit is contained in:
parent
effaaf0566
commit
ec6643b994
|
@ -19,7 +19,6 @@
|
|||
|
||||
package org.elasticsearch;
|
||||
|
||||
import org.elasticsearch.common.ParsingException;
|
||||
import org.elasticsearch.common.Strings;
|
||||
import org.elasticsearch.common.io.stream.StreamInput;
|
||||
import org.elasticsearch.common.io.stream.StreamOutput;
|
||||
|
@ -505,7 +504,7 @@ public class ElasticsearchException extends RuntimeException implements ToXConte
|
|||
exceptions.put(org.elasticsearch.index.mapper.MapperException.class, 37);
|
||||
exceptions.put(org.elasticsearch.indices.InvalidTypeNameException.class, 38);
|
||||
exceptions.put(org.elasticsearch.snapshots.SnapshotRestoreException.class, 39);
|
||||
exceptions.put(ParsingException.class, 40);
|
||||
exceptions.put(org.elasticsearch.common.ParsingException.class, 40);
|
||||
exceptions.put(org.elasticsearch.index.shard.IndexShardClosedException.class, 41);
|
||||
exceptions.put(org.elasticsearch.script.expression.ExpressionScriptCompilationException.class, 42);
|
||||
exceptions.put(org.elasticsearch.indices.recovery.RecoverFilesRecoveryException.class, 43);
|
||||
|
|
Loading…
Reference in New Issue