1 parent 9af96ca commit 7f4930eCopy full SHA for 7f4930e
1 file changed
src/main/java/io/github/makbn/jlmap/exception/JLMapNotReadyException.java
@@ -6,12 +6,13 @@
6
* JLMap Exception which is thrown when changing the map before it gets ready!
7
* Leaflet map gets fully ready after the {{@link javafx.concurrent.Worker.State}} of {{@link javafx.scene.web.WebEngine}}
8
* changes to {{@link javafx.concurrent.Worker.State#SUCCEEDED}}
9
- * by: Mehdi Akbarian Rastaghi (@makbn)
+ * @author Mehdi Akbarian Rastaghi (@makbn)
10
*/
11
public class JLMapNotReadyException extends JLException{
12
+ private static final String MAP_IS_NOT_READY_YET = "Map is not ready yet!";
13
14
@Builder
15
public JLMapNotReadyException() {
- super("map is not ready yet!");
16
+ super(MAP_IS_NOT_READY_YET);
17
}
18
0 commit comments