Вы можете использовать блок инициализации stati c, который позволит вам использовать блоки try / catch
...
public static String PHONE_NO_PREFIX;
static {
try {
PHONE_NO_PREFIX = CountryBO.getMobileCode();
} catch (Exception e) {
// TODO Handle the exception here
}
}
Если необходимо сделать PHONE_NO_PREFIX
final
(это то, что вы, вероятно, хотите сделать), вы можете использовать локальный метод c:
public static final String PHONE_NO_PREFIX = getCountryCode();
private static String getCountryCode() {
try {
return CountryBO.getMobileCode();
} catch (Exception e) {
// TODO Handle the exception here
}
}