Toggle navigation
Home
java.lang.RuntimeException to org.neo4j.kernel.api.exceptions.index.IndexPopulationFailedKernelException
No. of Instances - 3
No. of Commits - 1
No. of Projects - {'neo4j'}
Hierarchy/Composition: -
Primitive Info: -
NameSpace: Jdk -> Internal
Mapping:
Cascading Type Change (Different)
StoreScan<RuntimeException>
to
StoreScan<IndexPopulationFailedKernelException>
Update Anonymous class
{ @Override public void run(){ for ( NodePropertyUpdate update : updates) { visitor.visit(update); } } @Override public void stop(){ } @Override public IndexPopulationProgress getProgress(){ return new IndexPopulationProgress(42,100); } }
to
{ @Override public void run() throws IndexPopulationFailedKernelException { for ( NodePropertyUpdate update : updates) { visitor.visit(update); } } @Override public void stop(){ throw new UnsupportedOperationException(); } @Override public IndexPopulationProgress getProgress(){ return new IndexPopulationProgress(42,100); } }
{ @Override public void run(){ for ( NodePropertyUpdate update : updates) { visitor.visit(update); } } @Override public void stop(){ } @Override public IndexPopulationProgress getProgress(){ return new IndexPopulationProgress(42,100); } }
to
{ @Override public void run() throws IndexPopulationFailedKernelException { for ( NodePropertyUpdate update : updates) { visitor.visit(update); } } @Override public void stop(){ throw new UnsupportedOperationException(); } @Override public IndexPopulationProgress getProgress(){ return new IndexPopulationProgress(42,100); } }
Cascading Type Change (Similar)
StoreScan<RuntimeException>
to
StoreScan<IndexPopulationFailedKernelException>