Skip to content

Commit

Permalink
Merge pull request #129 from Geomatys/master
Browse files Browse the repository at this point in the history
Move StopIteration.java to its correct directory for its package name
  • Loading branch information
forman committed May 14, 2018
2 parents 3331eb1 + f1f2f59 commit 370b0d8
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,10 @@
package org.jpy;

/**
* Translation of Python StopIteration so that they can be programmatically detected from Java.
*/
* Translation of Python StopIteration so that they can be programmatically detected from Java.
*/
public class StopIteration extends RuntimeException {
StopIteration(String message) {
super(message);
}
}
}

0 comments on commit 370b0d8

Please sign in to comment.