[LIB-9] Add functional for transcoding vector images
[chesshog.git] / chesshog-graphics / src / main / java / org / hedgecode / chess / img / ImageException.java
index ec77467..2a177ae 100644 (file)
@@ -31,12 +31,12 @@ public class ImageException extends Exception {
     private String localeKey;
     private String message;
 
-    ImageException(String localeKey) {
+    public ImageException(String localeKey) {
         this.localeKey = localeKey;
         this.message = null;
     }
 
-    ImageException(String localeKey, String message) {
+    public ImageException(String localeKey, String message) {
         this.localeKey = localeKey;
         this.message = message;
     }