[LIB-9] Add ability to archive qrcode content
[chesshog.git] / chesshog-qrcode / src / main / java / org / hedgecode / chess / qrcode / ChessQRCodeException.java
1 /*
2  * Copyright (c) 2018-2019. Developed by Hedgecode.
3  *
4  * Licensed under the Apache License, Version 2.0 (the "License");
5  * you may not use this file except in compliance with the License.
6  * You may obtain a copy of the License at
7  *
8  *   http://www.apache.org/licenses/LICENSE-2.0
9  *
10  * Unless required by applicable law or agreed to in writing, software
11  * distributed under the License is distributed on an "AS IS" BASIS,
12  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13  * See the License for the specific language governing permissions and
14  * limitations under the License.
15  */
16
17 package org.hedgecode.chess.qrcode;
18
19 import java.util.ResourceBundle;
20
21 /**
22  * Chess-specific QR Codes read/write/parse Exception.
23  *
24  * @author Dmitry Samoshin aka gotty
25  */
26 public class ChessQRCodeException extends Exception {
27
28     public enum Type {
29
30         READ  ("[Read Error] "),
31         WRITE ("[Write Error] "),
32         PARSE ("[Parse Error] ");
33
34         private String msg;
35
36         Type(String msg) {
37             this.msg = msg;
38         }
39     }
40
41     private static final ResourceBundle LOCALE_BUNDLE =
42             ResourceBundle.getBundle(ChessQRCodeConstants.LOCALE_BUNDLE_FILE);
43
44     private Type type;
45     private String localeKey;
46     private String message;
47
48     public ChessQRCodeException(Type type, String localeKey) {
49         this.type = type;
50         this.localeKey = localeKey;
51         this.message = null;
52     }
53
54     public ChessQRCodeException(Type type, String localeKey, String message) {
55         this.type = type;
56         this.localeKey = localeKey;
57         this.message = message;
58     }
59
60     public Type getType() {
61         return type;
62     }
63
64     public String getLocaleKey() {
65         return localeKey;
66     }
67
68     public String getMessage() {
69         StringBuilder sb = new StringBuilder();
70         sb.append(type.msg);
71         if (localeKey != null)
72             sb.append(
73                     LOCALE_BUNDLE.getString(localeKey)
74             );
75         if (message != null)
76             sb.append(": ").append(message);
77         return sb.toString();
78     }
79
80 }