[LIB-9] Move builder and parser interfaces from core to format module
[chesshog.git] / chesshog-format / src / main / java / org / hedgecode / chess / ParseException.java
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2018. Developed by Hedgecode.
+ * Copyright (c) 2018-2020. Developed by Hedgecode.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
  * limitations under the License.
  */
 
-package org.hedgecode.chess.position;
+package org.hedgecode.chess;
 
 import java.util.ResourceBundle;
 
-import org.hedgecode.chess.ChessHogConstants;
-
 /**
  * Incorrect parsing chess diagram/game Exception.
  *
@@ -28,7 +26,7 @@ import org.hedgecode.chess.ChessHogConstants;
 public class ParseException extends Exception {
 
     private static final ResourceBundle LOCALE_BUNDLE =
-            ResourceBundle.getBundle(ChessHogConstants.LOCALE_BUNDLE_FILE);
+            ResourceBundle.getBundle(FormatConstants.LOCALE_BUNDLE_FILE);
 
     private String localeKey;
     private String message;